Compare commits
3 Commits
version_2_
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| d03c0d8350 | |||
|
|
1c5a95c4bf | ||
| de79c900d2 |
@@ -1,234 +1,35 @@
|
||||
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards';
|
||||
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
|
||||
import HeroBrand from '@/components/sections/hero/HeroBrand';
|
||||
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
|
||||
import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
|
||||
import { Leaf, Shield, Sparkles } from "lucide-react";
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
// AUTO-GENERATED shell by per-section-migrate.
|
||||
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
||||
// files directly. Non-block content (wrappers, non-inlinable sections) is
|
||||
// preserved inline; extracted section blocks become <XSection/> refs.
|
||||
|
||||
export default function HomePage() {
|
||||
import React from 'react';
|
||||
import HeroSection from './HomePage/sections/Hero';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import CollectionsSection from './HomePage/sections/Collections';
|
||||
import ProductsSection from './HomePage/sections/Products';
|
||||
import MetricsSection from './HomePage/sections/Metrics';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
|
||||
import CertificationsSection from './HomePage/sections/Certifications';export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroBrand
|
||||
brand="Sustainable Luxury for Your Daily Glow"
|
||||
description="Discover premium lip care, fragrances, and skincare designed to elevate your everyday glow."
|
||||
primaryButton={{
|
||||
text: "Shop Now",
|
||||
href: "#products",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Explore Collections",
|
||||
href: "#collections",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/girl-holding-red-lipstick-front-mirror_23-2148210769.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
<CertificationsSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutFeaturesSplit
|
||||
tag="Our Mission"
|
||||
title="Beauty With Integrity"
|
||||
description="We blend the finest premium ingredients with sustainable packaging to deliver luxury results you can trust. Our mission is to empower women and reveal your natural radiance."
|
||||
items={[
|
||||
{
|
||||
icon: Shield,
|
||||
title: "Dermatologist-Tested",
|
||||
description: "Formulated for safety and efficacy by leading dermatologists.",
|
||||
},
|
||||
{
|
||||
icon: Leaf,
|
||||
title: "Sustainable & Vegan",
|
||||
description: "Cruelty-free formulas housed in eco-conscious packaging.",
|
||||
},
|
||||
{
|
||||
icon: Sparkles,
|
||||
title: "Natural Radiance",
|
||||
description: "Ingredients sourced to enhance your unique, natural glow.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-natural-cosmetics-concept_23-2148578622.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="collections" data-section="collections">
|
||||
<SectionErrorBoundary name="collections">
|
||||
<FeaturesImageBento
|
||||
tag="Collections"
|
||||
title="Our Signature Ranges"
|
||||
description="Explore our curated selections across Lip, Fragrance, and Skincare lines."
|
||||
items={[
|
||||
{
|
||||
title: "Lip Collection",
|
||||
description: "Oils, butters, and glosses.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/red-lipstick-arrangement-top-view_23-2148978120.jpg",
|
||||
},
|
||||
{
|
||||
title: "Luxury Perfumes",
|
||||
description: "Scent of confidence.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-black-white-minimal-design_23-2149253105.jpg",
|
||||
},
|
||||
{
|
||||
title: "Face Serums",
|
||||
description: "Deep hydration daily.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-beauty-products-based-regenerative-agriculture_23-2150721411.jpg",
|
||||
},
|
||||
{
|
||||
title: "Mini Fragrance Sets",
|
||||
description: "Travel elegance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/make-up-concept-with-lipsticks-arrangement_23-2149030343.jpg",
|
||||
},
|
||||
{
|
||||
title: "Moisturizers",
|
||||
description: "Velvety skin finish.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortment-jojoba-oil-dropper_23-2149022360.jpg",
|
||||
},
|
||||
{
|
||||
title: "Face Washes",
|
||||
description: "Pure, refreshed skin.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-korean-woman-holding-serum_23-2150167651.jpg",
|
||||
},
|
||||
{
|
||||
title: "Face Masks",
|
||||
description: "Spa-level results.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/transparent-skin-care-moisture-recipient-arrangement_23-2148761461.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<CollectionsSection />
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<SectionErrorBoundary name="products">
|
||||
<FeaturesDetailedCards
|
||||
tag="Best Sellers"
|
||||
title="Featured Beauty Essentials"
|
||||
description="The products our community can't stop talking about."
|
||||
items={[
|
||||
{
|
||||
title: "Silk Matte Lipstick",
|
||||
description: "Long-wearing color that hydrates.",
|
||||
tags: [
|
||||
"Lip",
|
||||
"Matte",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-lipsticks-with-palm-branch-shadow_23-2148210814.jpg",
|
||||
},
|
||||
{
|
||||
title: "Botanical Serum",
|
||||
description: "Packed with vitamins for glow.",
|
||||
tags: [
|
||||
"Skin",
|
||||
"Glow",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bicolor-plant-details_23-2149362191.jpg",
|
||||
},
|
||||
{
|
||||
title: "Virtual Shade Finder",
|
||||
description: "Find your perfect lip match.",
|
||||
tags: [
|
||||
"Tech",
|
||||
"Virtual",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-cake-photos_23-2149294464.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ProductsSection />
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsSimpleCards
|
||||
tag="Results"
|
||||
title="Beauty by the Numbers"
|
||||
description="Proven results for women who demand excellence."
|
||||
metrics={[
|
||||
{
|
||||
value: "98%",
|
||||
description: "Customer satisfaction rate",
|
||||
},
|
||||
{
|
||||
value: "250K+",
|
||||
description: "Happy beauty lovers",
|
||||
},
|
||||
{
|
||||
value: "12+",
|
||||
description: "Awards for innovation",
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
description: "Cruelty-free guarantee",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MetricsSection />
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialQuoteCards
|
||||
tag="Testimonials"
|
||||
title="Love from Our Community"
|
||||
description="Hear what our beauty lovers have to say."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah J.",
|
||||
role: "Makeup Artist",
|
||||
quote: "The texture is unparalleled. My lips have never felt better.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-serene-young-woman-with-beautiful-olive-skin-curly-hair-ideal-skin-brown-eyes-studio_633478-1003.jpg",
|
||||
},
|
||||
{
|
||||
name: "Emily R.",
|
||||
role: "Skincare Blogger",
|
||||
quote: "Finally, a luxury brand that values sustainability and quality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beauty-portrait-young-brunette-woman-with-evening-makeup-perfect-clean-skin-sexy-model-with-curly-hair-posing-studio-with-red-bright-natural-lips-silver-dress_158538-23937.jpg",
|
||||
},
|
||||
{
|
||||
name: "Jessica M.",
|
||||
role: "Creative Director",
|
||||
quote: "The perfume range is sophisticated and long-lasting. Absolute favorite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holds-white-roses-before-her-chest_8353-5425.jpg",
|
||||
},
|
||||
{
|
||||
name: "Chloe T.",
|
||||
role: "Beauty Editor",
|
||||
quote: "The shade finder is a game changer. Matches my skin tone perfectly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/colorful-outdoor-woman-portrait_23-2151936918.jpg",
|
||||
},
|
||||
{
|
||||
name: "Amanda B.",
|
||||
role: "Entrepreneur",
|
||||
quote: "Elegant packaging, effective ingredients. My beauty routine is complete.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-young-beautiful-smiling-woman-looking-trendy-girl-casual-summer-white-dress-sunglasses_158538-1561.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<TestimonialsSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Newsletter"
|
||||
text="Join The Beauty Club and get exclusive launches, beauty tips, and special discounts."
|
||||
primaryButton={{
|
||||
text: "Subscribe Now",
|
||||
href: "#",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "View Rewards",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
39
src/pages/HomePage/sections/About.tsx
Normal file
39
src/pages/HomePage/sections/About.tsx
Normal file
@@ -0,0 +1,39 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "about" section.
|
||||
|
||||
import React from 'react';
|
||||
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
||||
import { Leaf, Shield, Sparkles } from "lucide-react";
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function AboutSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutFeaturesSplit
|
||||
tag="Our Mission"
|
||||
title="Beauty With Integrity"
|
||||
description="We blend the finest premium ingredients with sustainable packaging to deliver luxury results you can trust. Our mission is to empower women and reveal your natural radiance."
|
||||
items={[
|
||||
{
|
||||
icon: Shield,
|
||||
title: "Dermatologist-Tested",
|
||||
description: "Formulated for safety and efficacy by leading dermatologists.",
|
||||
},
|
||||
{
|
||||
icon: Leaf,
|
||||
title: "Sustainable & Vegan",
|
||||
description: "Cruelty-free formulas housed in eco-conscious packaging.",
|
||||
},
|
||||
{
|
||||
icon: Sparkles,
|
||||
title: "Natural Radiance",
|
||||
description: "Ingredients sourced to enhance your unique, natural glow.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-natural-cosmetics-concept_23-2148578622.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
27
src/pages/HomePage/sections/Certifications.tsx
Normal file
27
src/pages/HomePage/sections/Certifications.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
import { Leaf, Rabbit, ShieldCheck, Sparkles, Heart } from "lucide-react";
|
||||
|
||||
export default function CertificationsSection() {
|
||||
return (
|
||||
<section data-webild-section="certifications" id="certifications" className="w-full py-8 bg-background border-b border-accent/20">
|
||||
<div className="w-content-width mx-auto">
|
||||
<div className="flex flex-wrap justify-center items-center gap-8 md:gap-16 opacity-80">
|
||||
{[
|
||||
{ icon: Rabbit, label: "Cruelty-Free" },
|
||||
{ icon: Leaf, label: "100% Vegan" },
|
||||
{ icon: ShieldCheck, label: "Dermatologist Tested" },
|
||||
{ icon: Sparkles, label: "Clean Ingredients" },
|
||||
{ icon: Heart, label: "Eco-Friendly" },
|
||||
].map((badge, index) => {
|
||||
const Icon = badge.icon;
|
||||
return (
|
||||
<div key={index} className="flex items-center gap-2 text-foreground">
|
||||
<Icon className="w-6 h-6 text-primary-cta" />
|
||||
<span className="text-sm font-medium uppercase tracking-wider">{badge.label}</span>
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
57
src/pages/HomePage/sections/Collections.tsx
Normal file
57
src/pages/HomePage/sections/Collections.tsx
Normal file
@@ -0,0 +1,57 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "collections" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function CollectionsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="collections" data-section="collections">
|
||||
<SectionErrorBoundary name="collections">
|
||||
<FeaturesImageBento
|
||||
tag="Collections"
|
||||
title="Our Signature Ranges"
|
||||
description="Explore our curated selections across Lip, Fragrance, and Skincare lines."
|
||||
items={[
|
||||
{
|
||||
title: "Lip Collection",
|
||||
description: "Oils, butters, and glosses.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/red-lipstick-arrangement-top-view_23-2148978120.jpg",
|
||||
},
|
||||
{
|
||||
title: "Luxury Perfumes",
|
||||
description: "Scent of confidence.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-black-white-minimal-design_23-2149253105.jpg",
|
||||
},
|
||||
{
|
||||
title: "Face Serums",
|
||||
description: "Deep hydration daily.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-beauty-products-based-regenerative-agriculture_23-2150721411.jpg",
|
||||
},
|
||||
{
|
||||
title: "Mini Fragrance Sets",
|
||||
description: "Travel elegance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/make-up-concept-with-lipsticks-arrangement_23-2149030343.jpg",
|
||||
},
|
||||
{
|
||||
title: "Moisturizers",
|
||||
description: "Velvety skin finish.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortment-jojoba-oil-dropper_23-2149022360.jpg",
|
||||
},
|
||||
{
|
||||
title: "Face Washes",
|
||||
description: "Pure, refreshed skin.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-korean-woman-holding-serum_23-2150167651.jpg",
|
||||
},
|
||||
{
|
||||
title: "Face Masks",
|
||||
description: "Spa-level results.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/transparent-skin-care-moisture-recipient-arrangement_23-2148761461.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
27
src/pages/HomePage/sections/Contact.tsx
Normal file
27
src/pages/HomePage/sections/Contact.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "contact" section.
|
||||
|
||||
import React from 'react';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ContactSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Newsletter"
|
||||
text="Join The Beauty Club and get exclusive launches, beauty tips, and special discounts."
|
||||
primaryButton={{
|
||||
text: "Subscribe Now",
|
||||
href: "#",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "View Rewards",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
28
src/pages/HomePage/sections/Hero.tsx
Normal file
28
src/pages/HomePage/sections/Hero.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "hero" section.
|
||||
|
||||
import React from 'react';
|
||||
import HeroBrand from '@/components/sections/hero/HeroBrand';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function HeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroBrand
|
||||
brand="Sustainable Luxury for Your Daily Glow"
|
||||
description="Discover premium lip care, fragrances, and skincare designed to elevate your everyday glow."
|
||||
primaryButton={{
|
||||
text: "Shop Now",
|
||||
href: "#products",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Explore Collections",
|
||||
href: "#collections",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/girl-holding-red-lipstick-front-mirror_23-2148210769.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
38
src/pages/HomePage/sections/Metrics.tsx
Normal file
38
src/pages/HomePage/sections/Metrics.tsx
Normal file
@@ -0,0 +1,38 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "metrics" section.
|
||||
|
||||
import React from 'react';
|
||||
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsSimpleCards
|
||||
tag="Results"
|
||||
title="Beauty by the Numbers"
|
||||
description="Proven results for women who demand excellence."
|
||||
metrics={[
|
||||
{
|
||||
value: "98%",
|
||||
description: "Customer satisfaction rate",
|
||||
},
|
||||
{
|
||||
value: "250K+",
|
||||
description: "Happy beauty lovers",
|
||||
},
|
||||
{
|
||||
value: "12+",
|
||||
description: "Awards for innovation",
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
description: "Cruelty-free guarantee",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
49
src/pages/HomePage/sections/Products.tsx
Normal file
49
src/pages/HomePage/sections/Products.tsx
Normal file
@@ -0,0 +1,49 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "products" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ProductsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="products" data-section="products">
|
||||
<SectionErrorBoundary name="products">
|
||||
<FeaturesDetailedCards
|
||||
tag="Best Sellers"
|
||||
title="Featured Beauty Essentials"
|
||||
description="The products our community can't stop talking about."
|
||||
items={[
|
||||
{
|
||||
title: "Silk Matte Lipstick",
|
||||
description: "Long-wearing color that hydrates.",
|
||||
tags: [
|
||||
"Lip",
|
||||
"Matte",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-lipsticks-with-palm-branch-shadow_23-2148210814.jpg",
|
||||
},
|
||||
{
|
||||
title: "Botanical Serum",
|
||||
description: "Packed with vitamins for glow.",
|
||||
tags: [
|
||||
"Skin",
|
||||
"Glow",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bicolor-plant-details_23-2149362191.jpg",
|
||||
},
|
||||
{
|
||||
title: "Virtual Shade Finder",
|
||||
description: "Find your perfect lip match.",
|
||||
tags: [
|
||||
"Tech",
|
||||
"Virtual",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-cake-photos_23-2149294464.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "testimonials" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialQuoteCards
|
||||
tag="Testimonials"
|
||||
title="Love from Our Community"
|
||||
description="Hear what our beauty lovers have to say."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah J.",
|
||||
role: "Makeup Artist",
|
||||
quote: "The texture is unparalleled. My lips have never felt better.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-serene-young-woman-with-beautiful-olive-skin-curly-hair-ideal-skin-brown-eyes-studio_633478-1003.jpg",
|
||||
},
|
||||
{
|
||||
name: "Emily R.",
|
||||
role: "Skincare Blogger",
|
||||
quote: "Finally, a luxury brand that values sustainability and quality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beauty-portrait-young-brunette-woman-with-evening-makeup-perfect-clean-skin-sexy-model-with-curly-hair-posing-studio-with-red-bright-natural-lips-silver-dress_158538-23937.jpg",
|
||||
},
|
||||
{
|
||||
name: "Jessica M.",
|
||||
role: "Creative Director",
|
||||
quote: "The perfume range is sophisticated and long-lasting. Absolute favorite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-holds-white-roses-before-her-chest_8353-5425.jpg",
|
||||
},
|
||||
{
|
||||
name: "Chloe T.",
|
||||
role: "Beauty Editor",
|
||||
quote: "The shade finder is a game changer. Matches my skin tone perfectly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/colorful-outdoor-woman-portrait_23-2151936918.jpg",
|
||||
},
|
||||
{
|
||||
name: "Amanda B.",
|
||||
role: "Entrepreneur",
|
||||
quote: "Elegant packaging, effective ingredients. My beauty routine is complete.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-young-beautiful-smiling-woman-looking-trendy-girl-casual-summer-white-dress-sunglasses_158538-1561.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user