Merge version_7 into main #8

Merged
bender merged 1 commits from version_7 into main 2026-04-21 13:25:53 +00:00

View File

@@ -9,6 +9,7 @@ import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Palette, Sparkles, Smile, Brush } from "lucide-react";
export default function LandingPage() {
@@ -57,12 +58,28 @@ export default function LandingPage() {
description="We believe every child is an artist, and our kits are the perfect gateway to self-expression."
subdescription="From non-toxic paints to curated canvases, we ensure a safe and joyful creative journey."
icon={Smile}
imageSrc="http://img.b2bpic.net/free-photo/happy-girl-painting_23-2149129532.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CfIJ6pjqcsTIIYv6uRMxnz7zo5/uploaded-1776777936425-q0lmhlll.jpg"
mediaAnimation="blur-reveal"
useInvertedBackground={false}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
title="Loved by Families Everywhere"
description="See what happy parents have to say about their children's creative growth."
showRating={true}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{ id: "1", name: "Sarah M.", handle: "@sarahm", testimonial: "My daughter's creativity has soared since we started with these kits!", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CfIJ6pjqcsTIIYv6uRMxnz7zo5/uploaded-1776777936425-t9wwke4c.jpg" },
{ id: "2", name: "James K.", handle: "@jamesk", testimonial: "Perfect weekend activity that kept my son engaged and happy for hours.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CfIJ6pjqcsTIIYv6uRMxnz7zo5/uploaded-1776777936425-0byayeri.jpg" },
{ id: "3", name: "Emily R.", handle: "@emilyr", testimonial: "The kits are beautifully curated and super easy for kids to follow along.", rating: 4, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CfIJ6pjqcsTIIYv6uRMxnz7zo5/uploaded-1776777936425-0ua68ed4.jpg" }
]}
/>
</div>
<div id="features" data-section="features">
<FeatureBorderGlow
title="Why Creative Kids Love Us"
@@ -87,7 +104,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
products={[
{ id: "1", name: "Magical Forest Kit", price: "$29", variant: "Starter", imageSrc: "http://img.b2bpic.net/free-photo/paint-brushes-kids_23-2149129532.jpg" },
{ id: "1", name: "Magical Forest Kit", price: "$29", variant: "Starter", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CfIJ6pjqcsTIIYv6uRMxnz7zo5/uploaded-1776777936425-8948jwuh.jpg" },
{ id: "2", name: "Galaxy Explorer Kit", price: "$35", variant: "Advanced", imageSrc: "http://img.b2bpic.net/free-photo/colorful-paints-kids_23-2149129532.jpg" },
{ id: "3", name: "Ocean Dreams Set", price: "$25", variant: "Fun", imageSrc: "http://img.b2bpic.net/free-photo/creative-kids-supplies_23-2149129532.jpg" },
]}
@@ -121,4 +138,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}