diff --git a/src/app/page.tsx b/src/app/page.tsx index e696882..7b3d735 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,6 +8,7 @@ import TextAbout from "@/components/sections/about/TextAbout"; import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FaqSplitText from "@/components/sections/faq/FaqSplitText"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import Link from "next/link"; import { Sparkles, Heart, Target, Award, TrendingUp, ShoppingBag } from "lucide-react"; @@ -23,35 +24,31 @@ export default function HomePage() { const footerColumns = [ { - title: "Shop", - items: [ - { label: "New Arrivals", href: "/shop" }, - { label: "Best Sellers", href: "/shop" }, + title: "Shop", items: [ + { label: "New Arrivals", href: "/shop#new" }, + { label: "Best Sellers", href: "/shop#bestsellers" }, { label: "All Products", href: "/shop" }, - { label: "Gift Cards", href: "/shop" }, + { label: "Gift Cards", href: "/shop#gifts" }, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Our Story", href: "/about" }, + { label: "Our Story", href: "/about#story" }, { label: "Careers", href: "#" }, { label: "Blog", href: "#" }, ], }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "Contact Us", href: "/contact" }, - { label: "FAQ", href: "#" }, + { label: "FAQ", href: "#faq" }, { label: "Shipping Info", href: "#" }, { label: "Returns", href: "#" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Security", href: "#" }, @@ -105,7 +102,6 @@ export default function HomePage() { imageAlt="Premium curated luxury products" mediaAnimation="opacity" imagePosition="right" - useInvertedBackground={false} /> @@ -124,19 +120,9 @@ export default function HomePage() { gridVariant="two-columns-alternating-heights" products={[ { - id: "1", - name: "New Arrivals", - price: "From $49", - imageSrc: "http://img.b2bpic.net/free-psd/social-media-promo-template-maximalism-style_23-2150576858.jpg?_wi=1", - imageAlt: "New luxury collection items", - }, + id: "1", name: "New Arrivals", price: "From $49", imageSrc: "http://img.b2bpic.net/free-psd/social-media-promo-template-maximalism-style_23-2150576858.jpg", imageAlt: "New luxury collection items"}, { - id: "2", - name: "Best Sellers", - price: "From $79", - imageSrc: "http://img.b2bpic.net/free-photo/woman-working-laptop-cafe-sitting-coach_1303-27367.jpg?_wi=1", - imageAlt: "Popular bestselling products", - }, + id: "2", name: "Best Sellers", price: "From $79", imageSrc: "http://img.b2bpic.net/free-photo/woman-working-laptop-cafe-sitting-coach_1303-27367.jpg", imageAlt: "Popular bestselling products"}, ]} /> @@ -156,6 +142,28 @@ export default function HomePage() { /> +