Merge version_3 into main #4

Merged
bender merged 5 commits from version_3 into main 2026-02-20 12:19:19 +00:00
5 changed files with 20 additions and 14 deletions

View File

@@ -100,4 +100,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -1406,4 +1406,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -4,7 +4,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCTA from '@/components/sections/contact/ContactCTA';
@@ -113,7 +113,7 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
<TestimonialCardOne
title="Loved by Fragrance Enthusiasts"
description="Discover what our customers have to say about their LikeYou experience."
tag="Customer Reviews"
@@ -123,25 +123,31 @@ export default function LandingPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Sarah Mitchell", handle: "@sarah_loves_scents", testimonial: "LikeYou has completely transformed my daily routine. The Rose Essence is absolutely divine and lasts all day!", imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=1", imageAlt: "Sarah Mitchell"
id: "1", name: "Sarah Mitchell", role: "Fragrance Enthusiast", company: "Beauty Community", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=1", imageAlt: "Sarah Mitchell"
},
{
id: "2", name: "Emma Richardson", handle: "@emma_fragrance", testimonial: "The quality and elegance of these fragrances are unmatched. I've recommended LikeYou to all my friends.", imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=2", imageAlt: "Emma Richardson"
id: "2", name: "Emma Richardson", role: "Fragrance Editor", company: "Style Magazine", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=2", imageAlt: "Emma Richardson"
},
{
id: "3", name: "Jessica Chen", handle: "@jess_scent_journey", testimonial: "Finally found a perfume brand that understands luxury. Every bottle feels special and smells incredible.", imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=3", imageAlt: "Jessica Chen"
id: "3", name: "Jessica Chen", role: "Luxury Consultant", company: "Premium Retail", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=3", imageAlt: "Jessica Chen"
},
{
id: "4", name: "Amanda Brooks", handle: "@amanda_style", testimonial: "The customer service is exceptional, and the fragrances are worth every penny. Absolutely obsessed!", imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=4", imageAlt: "Amanda Brooks"
id: "4", name: "Amanda Brooks", role: "Fashion Influencer", company: "Style Collective", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=4", imageAlt: "Amanda Brooks"
},
{
id: "5", name: "Victoria Lane", handle: "@victoria_beauty", testimonial: "Each fragrance tells a story and makes me feel confident and sophisticated. LikeYou is my go-to brand.", imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=5", imageAlt: "Victoria Lane"
id: "5", name: "Victoria Lane", role: "Beauty Expert", company: "Luxury Living", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=5", imageAlt: "Victoria Lane"
},
{
id: "6", name: "Rachel Foster", handle: "@rachel_fragrances", testimonial: "The Vanilla Musk is my signature scent now. Compliments constantly! Best investment ever.", imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=6", imageAlt: "Rachel Foster"
id: "6", name: "Rachel Foster", role: "Scent Curator", company: "Fragrance House", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=6", imageAlt: "Rachel Foster"
}
]}
speed={40}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
buttons={[
{text: "Read More Reviews", href: "#"}
@@ -265,4 +271,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -332,4 +332,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -176,4 +176,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}