diff --git a/src/app/page.tsx b/src/app/page.tsx index a05afb3..9a6a2d2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,8 +10,11 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import ProductCardOne from '@/components/sections/product/ProductCardOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import { useRouter } from 'next/navigation'; export default function LandingPage() { + const router = useRouter(); + return ( @@ -52,17 +43,10 @@ export default function LandingPage() {
@@ -74,24 +58,9 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={true} features={[ - { - id: "f1", - title: "Premium Quality", - description: "Every item undergoes rigorous quality control to ensure perfection.", - imageSrc: "http://img.b2bpic.net/free-vector/golden-new-year-2021_23-2148720579.jpg", - }, - { - id: "f2", - title: "Fast Worldwide Delivery", - description: "We ensure your products reach you quickly and securely, no matter where you are.", - imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-download-buttons-label-collection_23-2149934811.jpg", - }, - { - id: "f3", - title: "24/7 Support", - description: "Our team is always here to help with any questions you might have about your order.", - imageSrc: "http://img.b2bpic.net/free-vector/messages-outline-style-multiple-set_78370-8370.jpg", - }, + { id: "f1", title: "Premium Quality", description: "Every item undergoes rigorous quality control to ensure perfection.", imageSrc: "http://img.b2bpic.net/free-vector/golden-new-year-2021_23-2148720579.jpg" }, + { id: "f2", title: "Fast Worldwide Delivery", description: "We ensure your products reach you quickly and securely, no matter where you are.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-download-buttons-label-collection_23-2149934811.jpg" }, + { id: "f3", title: "24/7 Support", description: "Our team is always here to help with any questions you might have about your order.", imageSrc: "http://img.b2bpic.net/free-vector/messages-outline-style-multiple-set_78370-8370.jpg" }, ]} title="Why Choose Luxe Select" description="We prioritize quality and the customer experience above all else." @@ -105,24 +74,9 @@ export default function LandingPage() { gridVariant="one-large-left-three-stacked-right" useInvertedBackground={false} products={[ - { - id: "p1", - name: "Chronos Elegance", - price: "$349", - imageSrc: "http://img.b2bpic.net/free-photo/elegant-watch-with-silver-golden-chain-isolated_181624-27080.jpg", - }, - { - id: "p2", - name: "Nomad Leather Bag", - price: "$189", - imageSrc: "http://img.b2bpic.net/free-photo/mediterranean-aesthetics-bag-still-life_23-2151141487.jpg", - }, - { - id: "p3", - name: "Sonic Aura Speaker", - price: "$129", - imageSrc: "http://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722623.jpg", - }, + { id: "p1", name: "Chronos Elegance", price: "$349", imageSrc: "http://img.b2bpic.net/free-photo/elegant-watch-with-silver-golden-chain-isolated_181624-27080.jpg", onProductClick: () => router.push('/products/p1') }, + { id: "p2", name: "Nomad Leather Bag", price: "$189", imageSrc: "http://img.b2bpic.net/free-photo/mediterranean-aesthetics-bag-still-life_23-2151141487.jpg", onProductClick: () => router.push('/products/p2') }, + { id: "p3", name: "Sonic Aura Speaker", price: "$129", imageSrc: "http://img.b2bpic.net/free-photo/still-life-tech-device_23-2150722623.jpg", onProductClick: () => router.push('/products/p3') }, ]} title="Featured Collections" description="Explore our hand-picked selection of luxury items." @@ -133,24 +87,8 @@ export default function LandingPage() { @@ -163,38 +101,10 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Sarah Johnson", - role: "Designer", - company: "Studio X", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/light-still-life-detail-interior-house-concept-comfort-home-atmosphere_169016-4628.jpg", - }, - { - id: "2", - name: "Michael Chen", - role: "Founder", - company: "TechLab", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/green-screen-mockup-desktop-pc-display-cozy-home-office-desk_482257-124924.jpg", - }, - { - id: "3", - name: "Emily Rodriguez", - role: "Manager", - company: "GrowthCo", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/cup-with-delicious-coffee-table-high-angle_23-2149703756.jpg", - }, - { - id: "4", - name: "David Kim", - role: "Consultant", - company: "Agency Y", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/mid-aged-couple-love-home_23-2147986287.jpg", - }, + { id: "1", name: "Sarah Johnson", role: "Designer", company: "Studio X", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/light-still-life-detail-interior-house-concept-comfort-home-atmosphere_169016-4628.jpg" }, + { id: "2", name: "Michael Chen", role: "Founder", company: "TechLab", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/green-screen-mockup-desktop-pc-display-cozy-home-office-desk_482257-124924.jpg" }, + { id: "3", name: "Emily Rodriguez", role: "Manager", company: "GrowthCo", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cup-with-delicious-coffee-table-high-angle_23-2149703756.jpg" }, + { id: "4", name: "David Kim", role: "Consultant", company: "Agency Y", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/mid-aged-couple-love-home_23-2147986287.jpg" }, ]} title="What Our Customers Say" description="Authentic experiences from members of our community." @@ -206,21 +116,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} faqs={[ - { - id: "q1", - title: "What is your return policy?", - content: "We offer a 30-day money-back guarantee on all products.", - }, - { - id: "q2", - title: "How long is shipping?", - content: "Orders typically arrive within 7-14 business days worldwide.", - }, - { - id: "q3", - title: "Do you ship internationally?", - content: "Yes, we provide international shipping to over 100 countries.", - }, + { id: "q1", title: "What is your return policy?", content: "We offer a 30-day money-back guarantee on all products." }, + { id: "q2", title: "How long is shipping?", content: "Orders typically arrive within 7-14 business days worldwide." }, + { id: "q3", title: "Do you ship internationally?", content: "Yes, we provide international shipping to over 100 countries." }, ]} imageSrc="http://img.b2bpic.net/free-photo/top-view-laptop-coffee-desk_23-2148110225.jpg" mediaAnimation="slide-up" @@ -233,53 +131,9 @@ export default function LandingPage() {