7 Commits

Author SHA1 Message Date
8f24328165 Update src/app/page.tsx 2026-03-10 23:53:48 +00:00
92a0370d6e Update src/app/page.tsx 2026-03-10 23:40:36 +00:00
bf49d96d1d Update src/app/page.tsx 2026-03-10 23:35:25 +00:00
dc3bb69ac8 Merge version_1 into main
Merge version_1 into main
2026-03-10 11:12:44 +00:00
45ec9f11b9 Merge version_1 into main
Merge version_1 into main
2026-03-10 11:10:42 +00:00
957b9843ef Merge version_1 into main
Merge version_1 into main
2026-03-10 11:08:58 +00:00
eb6f995e21 Merge version_1 into main
Merge version_1 into main
2026-03-10 11:05:19 +00:00

View File

@@ -10,7 +10,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { BookOpen, Heart, Users, Star, Globe, Sparkles, CheckCircle, Baby } from 'lucide-react';
import { BookOpen, Heart, Users, Star, Globe, Sparkles, CheckCircle, Baby, MessageCircle, Mail, Phone, MapPin } from 'lucide-react';
const navItems = [
{ name: "Home", id: "/" },
@@ -189,17 +189,17 @@ export default function Home() {
<div id="contact" data-section="contact">
<ContactCTA
tag="Ready to Begin?"
tagIcon={Sparkles}
tag="Get in Touch"
tagIcon={MessageCircle}
tagAnimation="slide-up"
title="Start Your Child's Reading Adventure Today"
description="Join thousands of families who have discovered the magic of Time Books. Browse our collection, find your child's next favorite book, and unlock the joy of reading."
title="Connect With Time Books"
description="Have questions about our collection, need personalized recommendations, or want to partner with us? We'd love to hear from you. Reach out to our community team today."
buttons={[
{ text: "Explore Our Library", href: "books" },
{ text: "Contact Us", href: "#" },
{ text: "Send Message", href: "#" },
{ text: "Schedule Call", href: "#" },
]}
buttonAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
/>
</div>
@@ -232,6 +232,14 @@ export default function Home() {
{ label: "Help Center", href: "#" },
],
},
{
title: "Community", items: [
{ label: "Join Our Community", href: "#" },
{ label: "Parent Resources", href: "#" },
{ label: "Teacher Programs", href: "#" },
{ label: "Events & Webinars", href: "#" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
@@ -245,4 +253,4 @@ export default function Home() {
</div>
</ThemeProvider>
);
}
}