Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-03-10 10:20:24 +00:00

View File

@@ -8,9 +8,9 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterCard from "@/components/sections/footer/FooterCard";
import { CheckCircle, Facebook, Heart, Instagram, Mail, Sparkles, Star, Twitter } from "lucide-react";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { CheckCircle, Facebook, Heart, Instagram, Mail, Sparkles, Star, Twitter, MapPin, Phone } from "lucide-react";
export default function LandingPage() {
return (
@@ -204,40 +204,53 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Stay Updated"
title="Get Special Offers & New Collections"
description="Subscribe to our newsletter and be the first to know about new arrivals, seasonal collections, and exclusive family deals."
<ContactCTA
tag="Get in Touch"
tagIcon={Mail}
tagAnimation="slide-up"
background={{ variant: "rotated-rays-animated" }}
title="Visit Our Store & Contact Us"
description="Have questions about our products? Visit our flagship store or reach out to our friendly team. We're here to help!"
buttons={[
{ text: "Send Message", href: "mailto:hello@brendkids.com" },
{ text: "Shop Now", href: "https://shop.brendkids.com" }
]}
buttonAnimation="slide-up"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Subscribe"
termsText="We respect your privacy. Unsubscribe anytime from our newsletters."
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Brend Kids"
copyrightText="© 2025 Brend Kids. All rights reserved. Bringing joy to kids, everywhere."
socialLinks={[
<FooterBaseReveal
columns={[
{
icon: Facebook,
href: "https://facebook.com/brendkids", ariaLabel: "Facebook"
title: "Shop", items: [
{ label: "New Arrivals", href: "https://shop.brendkids.com" },
{ label: "Collections", href: "products" },
{ label: "Sale", href: "https://shop.brendkids.com" },
{ label: "All Products", href: "https://shop.brendkids.com" }
]
},
{
icon: Instagram,
href: "https://instagram.com/brendkids", ariaLabel: "Instagram"
title: "Company", items: [
{ label: "About Us", href: "about" },
{ label: "Blog", href: "https://shop.brendkids.com" },
{ label: "Careers", href: "https://shop.brendkids.com" },
{ label: "Press", href: "https://shop.brendkids.com" }
]
},
{
icon: Twitter,
href: "https://twitter.com/brendkids", ariaLabel: "Twitter"
title: "Support", items: [
{ label: "Contact", href: "contact" },
{ label: "FAQ", href: "https://shop.brendkids.com" },
{ label: "Shipping Info", href: "https://shop.brendkids.com" },
{ label: "Returns", href: "https://shop.brendkids.com" }
]
}
]}
copyrightText="© 2025 Brend Kids. All rights reserved."
/>
</div>
</ThemeProvider>
);
}
}