8 Commits

Author SHA1 Message Date
0771a3e7c0 Update src/app/page.tsx 2026-04-21 13:36:57 +00:00
ef9033bb37 Merge version_9 into main
Merge version_9 into main
2026-04-21 13:36:17 +00:00
694048f680 Update src/app/page.tsx 2026-04-21 13:36:14 +00:00
a166adf59c Merge version_8 into main
Merge version_8 into main
2026-04-21 13:27:52 +00:00
03ab6f43e8 Update src/app/page.tsx 2026-04-21 13:27:48 +00:00
bf2f79fffe Merge version_7 into main
Merge version_7 into main
2026-04-21 13:25:53 +00:00
94daaa40a4 Update src/app/page.tsx 2026-04-21 13:25:50 +00:00
bbcbc808b8 Merge version_6 into main
Merge version_6 into main
2026-04-21 13:22: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() {
@@ -44,8 +45,7 @@ export default function LandingPage() {
description="Discover magical painting kits designed to spark imagination and artistic growth."
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Explore Kits", href: "#products" },
{ text: "Start Painting", href: "#contact" }
{ text: "Shop Painting Kits", href: "#products" }
]}
/>
</div>
@@ -57,12 +57,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 +103,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 +137,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}