2 Commits

Author SHA1 Message Date
3be4abcfe9 Update src/app/page.tsx 2026-03-10 23:52:59 +00:00
2215993498 Update src/app/page.tsx 2026-03-10 23:38:01 +00:00

View File

@@ -10,7 +10,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import ContactCTA from '@/components/sections/contact/ContactCTA'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { BookOpen, Heart, Users, Star, Globe, Sparkles, CheckCircle, Baby, Mail, MapPin, Phone } from 'lucide-react'; import { BookOpen, Heart, Users, Star, Globe, Sparkles, CheckCircle, Baby, Mail } from 'lucide-react';
const navItems = [ const navItems = [
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
@@ -189,14 +189,14 @@ export default function Home() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCTA <ContactCTA
tag="Ready to Begin?" tag="Get in Touch"
tagIcon={Sparkles} tagIcon={Mail}
tagAnimation="slide-up" tagAnimation="slide-up"
title="Start Your Child's Reading Adventure Today" title="Ready to Start Your Child's Reading Adventure?"
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." description="Have questions about our books or services? Reach out to us today and let's find the perfect stories for your child. Our team is here to help!"
buttons={[ buttons={[
{ text: "Explore Our Library", href: "books" }, { text: "Contact Form", href: "#contact-form" },
{ text: "Contact Us", href: "#contact-info" }, { text: "Browse Books", href: "books" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
@@ -210,17 +210,17 @@ export default function Home() {
columns={[ columns={[
{ {
title: "Product", items: [ title: "Product", items: [
{ label: "Browse Books", href: "books" }, { label: "Browse Books", href: "#books" },
{ label: "Age Categories", href: "categories" }, { label: "Age Categories", href: "#categories" },
{ label: "Best Sellers", href: "books" }, { label: "Best Sellers", href: "#books" },
{ label: "New Arrivals", href: "books" }, { label: "Featured Collection", href: "#books" },
], ],
}, },
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About Us", href: "about" }, { label: "About Us", href: "#about" },
{ label: "Our Mission", href: "about" }, { label: "Our Mission", href: "#about" },
{ label: "Contact", href: "contact" }, { label: "Contact Us", href: "#contact" },
{ label: "Blog", href: "#" }, { label: "Blog", href: "#" },
], ],
}, },