Switch to version 3: modified src/app/page.tsx

This commit is contained in:
2026-03-06 16:41:08 +00:00
parent 1ab16552d4
commit 544cd27853

View File

@@ -7,11 +7,10 @@ import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCa
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import TeamCardTen from '@/components/sections/team/TeamCardTen';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Sparkles, Rocket, CheckCircle, Zap, Star, Mail, ThumbsUp, DollarSign, Phone } from 'lucide-react';
import { Sparkles, Rocket, CheckCircle, Zap, Star, Mail, ThumbsUp, DollarSign } from 'lucide-react';
export default function LandingPage() {
return (
@@ -33,7 +32,6 @@ export default function LandingPage() {
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Work", id: "work" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" }
]}
brandName="Poof Sites"
@@ -139,28 +137,6 @@ export default function LandingPage() {
/>
</div>
<div id="team" data-section="team">
<TeamCardTen
title="Meet the Poof Sites Team"
tag="Our Experts"
tagAnimation="slide-up"
membersAnimation="slide-up"
memberVariant="default"
useInvertedBackground={true}
members={[
{
id: "1", name: "Alex Chen", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZmcpWHeWm1sUG9szF2sfVbKeH/professional-headshot-of-a-web-developer-1772808624509-8f301364.png", imageAlt: "Alex Chen - Lead Developer"
},
{
id: "2", name: "Sarah Martinez", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZmcpWHeWm1sUG9szF2sfVbKeH/professional-headshot-of-a-ui-ux-designe-1772808625026-c18274c8.png", imageAlt: "Sarah Martinez - UI/UX Designer"
},
{
id: "3", name: "Jordan Davis", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZmcpWHeWm1sUG9szF2sfVbKeH/professional-headshot-of-a-project-manag-1772808625064-7de6dc91.png", imageAlt: "Jordan Davis - Project Manager"
}
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
testimonials={[
@@ -224,7 +200,7 @@ export default function LandingPage() {
tagIcon={Mail}
tagAnimation="slide-up"
title="Let's Build Something Amazing Together"
description="Whether you're a startup launching your first website or an established business looking to redesign, we're here to help. Get in touch today for a free consultation. You can reach us at poofsite@yahoo.com or call us at 803-848-6793 with any questions or to discuss quotes."
description="Whether you're a startup launching your first website or an established business looking to redesign, we're here to help. Get in touch today for a free consultation."
buttons={[
{ text: "Schedule Consultation", href: "mailto:hello@poofsites.com" },
{ text: "View Pricing", href: "#pricing" }
@@ -252,15 +228,14 @@ export default function LandingPage() {
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Work", href: "#work" },
{ label: "Team", href: "#team" },
{ label: "Pricing", href: "#pricing" }
]
},
{
title: "Contact", items: [
{ label: "Email: poofsite@yahoo.com", href: "mailto:poofsite@yahoo.com" },
{ label: "Phone: 803-848-6793", href: "tel:8038486793" },
{ label: "Email", href: "mailto:hello@poofsites.com" },
{ label: "Get in Touch", href: "#contact" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
}