diff --git a/src/app/page.tsx b/src/app/page.tsx index 8a67aec..18da216 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,8 +8,10 @@ import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwen import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import MetricCardTen from "@/components/sections/metrics/MetricCardTen"; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { Sparkles, Award, Star, Zap, Heart } from "lucide-react"; +import { Sparkles, Award, Star, Zap, Heart, HelpCircle, Lightbulb } from "lucide-react"; import Link from "next/link"; export default function HomePage() { @@ -23,8 +25,7 @@ export default function HomePage() { const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Web Design", href: "/services" }, { label: "Development", href: "/services" }, { label: "Branding", href: "/services" }, @@ -32,8 +33,7 @@ export default function HomePage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/" }, { label: "Portfolio", href: "/portfolio" }, { label: "Process", href: "/process" }, @@ -41,8 +41,7 @@ export default function HomePage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Contact", href: "/contact" }, { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, @@ -71,7 +70,7 @@ export default function HomePage() { borderRadius="soft" contentWidth="small" sizing="largeSmallSizeMediumTitles" - background="noise" + background="circleGradient" cardStyle="solid" primaryButtonStyle="shadow" secondaryButtonStyle="solid" @@ -92,61 +91,37 @@ export default function HomePage() { tag="Award-Winning Agency" tagIcon={Sparkles} tagAnimation="slide-up" - background={{ variant: "noise" }} + background={{ variant: "glowing-orb" }} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag5E12tt9qH4zLUc6Utm88Gnfu/a-stunning-modern-web-design-portfolio-s-1773001369643-8f33360c.png" imageAlt="Modern web design showcase" mediaAnimation="slide-up" testimonials={[ { - name: "Sarah Mitchell", - handle: "CEO, TechVenture Inc", - testimonial: - "Webild transformed our digital presence completely. Their team understood our vision and delivered beyond expectations.", - rating: 5, + name: "Sarah Mitchell", handle: "CEO, TechVenture Inc", testimonial: + "Webild transformed our digital presence completely. Their team understood our vision and delivered beyond expectations.", rating: 5, imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag5E12tt9qH4zLUc6Utm88Gnfu/professional-headshot-portrait-of-a-conf-1773001369528-2723c2f0.png?_wi=1", - imageAlt: "Sarah Mitchell", - }, + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag5E12tt9qH4zLUc6Utm88Gnfu/professional-headshot-portrait-of-a-conf-1773001369528-2723c2f0.png", imageAlt: "Sarah Mitchell"}, { - name: "Marcus Johnson", - handle: "Founder, Creative Labs", - testimonial: - "Working with Webild was a game-changer. Our new website increased conversions by 340% in just three months.", - rating: 5, + name: "Marcus Johnson", handle: "Founder, Creative Labs", testimonial: + "Working with Webild was a game-changer. Our new website increased conversions by 340% in just three months.", rating: 5, imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag5E12tt9qH4zLUc6Utm88Gnfu/professional-headshot-of-a-male-entrepre-1773001370259-6d519021.png?_wi=1", - imageAlt: "Marcus Johnson", - }, + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag5E12tt9qH4zLUc6Utm88Gnfu/professional-headshot-of-a-male-entrepre-1773001370259-6d519021.png", imageAlt: "Marcus Johnson"}, { - name: "Elena Rodriguez", - handle: "CMO, Innovate Solutions", - testimonial: - "The attention to detail and creative brilliance was outstanding. Highly recommend for any serious brand.", - rating: 5, + name: "Elena Rodriguez", handle: "CMO, Innovate Solutions", testimonial: + "The attention to detail and creative brilliance was outstanding. Highly recommend for any serious brand.", rating: 5, imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag5E12tt9qH4zLUc6Utm88Gnfu/professional-headshot-of-a-female-creati-1773001369853-8eeacc75.png?_wi=1", - imageAlt: "Elena Rodriguez", - }, + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag5E12tt9qH4zLUc6Utm88Gnfu/professional-headshot-of-a-female-creati-1773001369853-8eeacc75.png", imageAlt: "Elena Rodriguez"}, { - name: "David Chen", - handle: "CTO, Digital First Corp", - testimonial: - "Best agency we've partnered with. Responsive, professional, and results-driven.", - rating: 5, + name: "David Chen", handle: "CTO, Digital First Corp", testimonial: + "Best agency we've partnered with. Responsive, professional, and results-driven.", rating: 5, imageSrc: - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag5E12tt9qH4zLUc6Utm88Gnfu/professional-headshot-of-a-male-technolo-1773001369932-4cc58706.png?_wi=1", - imageAlt: "David Chen", - }, + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ag5E12tt9qH4zLUc6Utm88Gnfu/professional-headshot-of-a-male-technolo-1773001369932-4cc58706.png", imageAlt: "David Chen"}, ]} buttons={[ { - text: "View Our Work", - href: "/portfolio", - }, + text: "View Our Work", href: "/portfolio"}, { - text: "Schedule Consultation", - href: "/contact", - }, + text: "Schedule Consultation", href: "/contact"}, ]} buttonAnimation="slide-up" useInvertedBackground={false} @@ -156,21 +131,17 @@ export default function HomePage() {