Update src/app/page.tsx

This commit is contained in:
2026-05-14 00:02:31 +00:00
parent 5a89c9a6ab
commit c25c8e670c

View File

@@ -10,7 +10,8 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
export default function LandingPage() {
return (
@@ -59,6 +60,15 @@ export default function LandingPage() {
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Trusted by Beauty Experts"
description="Our ingredients are handpicked from verified ethical sources worldwide."
names={["Vogue", "Harper's Bazaar", "Allure", "Elle", "Byrdie"]}
useInvertedBackground={true}
/>
</div>
<div id="about" data-section="about">
<MetricSplitMediaAbout
useInvertedBackground={true}
@@ -131,18 +141,14 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
useInvertedBackground={true}
testimonials={[
{ id: "t1", name: "Elena R.", imageSrc: "http://img.b2bpic.net/free-photo/woman-look-mirror-eyeshadow-palette_197531-32894.jpg" },
{ id: "t2", name: "Marcus S.", imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-outdoor_624325-1223.jpg" },
{ id: "t3", name: "Sophie K.", imageSrc: "http://img.b2bpic.net/free-photo/little-girl-painting-with-flour-her-mother-face_23-2148327944.jpg" },
{ id: "t4", name: "Julian D.", imageSrc: "http://img.b2bpic.net/free-photo/positive-pleased-caucasian-woman-keeps-hands-chin_273609-28170.jpg" },
{ id: "t5", name: "Maya W.", imageSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-pretty-woman-skin-care_624325-3175.jpg" }
]}
cardTitle="Loved by Thousands"
cardTag="Testimonials"
cardAnimation="slide-up"
<TestimonialCardFifteen
testimonial="The best skincare line I've used. My skin has never felt more radiant!"
author="Elena R."
rating={5}
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
useInvertedBackground={false}
avatars={[{ src: "http://img.b2bpic.net/free-photo/woman-look-mirror-eyeshadow-palette_197531-32894.jpg", alt: "Elena R." }]}
/>
</div>