diff --git a/src/app/page.tsx b/src/app/page.tsx index 85982f2..68be110 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,7 +6,7 @@ import HeroLogo from '@/components/sections/hero/HeroLogo'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import MediaAbout from '@/components/sections/about/MediaAbout'; -import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; +import ProductCartItem from '@/components/ecommerce/cart/ProductCartItem'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import { Sparkles, Award, Crown, Mail, ArrowRight } from "lucide-react"; @@ -57,22 +57,28 @@ export default function LandingPage() {
- +
+
+

Customer Showcase

+
+ {[ + { + name: "Isabella Marchetti", role: "Fashion Editor", image: "http://img.b2bpic.net/free-photo/trans-person-working-office-with-colleagues_23-2149286973.jpg"}, + { + name: "Sarah Chen", role: "Style Influencer", image: "http://img.b2bpic.net/free-photo/pretty-gorgeous-woman-use-spray-eyes-feeling-good-after-long-laptop-use-sitting-home_496169-98.jpg"}, + { + name: "Emma Davis", role: "Luxury Blogger", image: "http://img.b2bpic.net/free-photo/beauty-blogger-taking-photo-cosmetics_53876-40971.jpg"}, + { + name: "Jessica Williams", role: "Brand Ambassador", image: "http://img.b2bpic.net/free-photo/cool-woman-winking-showing-big-thumbs-up-pretty-girl-black-jacket-widely-smiling-looking-into-camera-isolated-background_197531-18491.jpg"}, + { + name: "Victoria Sterling", role: "Fashion Critic", image: "http://img.b2bpic.net/free-photo/trans-person-working-office-with-colleagues_23-2149286973.jpg"}, + { + name: "Olivia Grace", role: "Style Director", image: "http://img.b2bpic.net/free-photo/pretty-gorgeous-woman-use-spray-eyes-feeling-good-after-long-laptop-use-sitting-home_496169-98.jpg"}, + { + name: "Sophia Laurent", role: "Fashion Journalist", image: "http://img.b2bpic.net/free-photo/beauty-blogger-taking-photo-cosmetics_53876-40971.jpg"}, + { + name: "Alexandra Ross", role: "Luxury Consultant", image: "http://img.b2bpic.net/free-photo/cool-woman-winking-showing-big-thumbs-up-pretty-girl-black-jacket-widely-smiling-looking-into-camera-isolated-background_197531-18491.jpg"}, + { + name: "Catherine Blake", role: "Style Expert", image: "http://img.b2bpic.net/free-photo/trans-person-working-office-with-colleagues_23-2149286973.jpg"}, + ].map((person, index) => ( +
+
+ {person.name} +
+

{person.name}

+

{person.role}

+
+ ))} +
+
+