Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fa52b67cc5 | |||
| e8f9dc845e | |||
| 2ce6a47838 | |||
| 801653d456 | |||
| 4ed18179a9 | |||
| f3a1e68d66 | |||
| f0c41b17e0 | |||
| f3938a3243 | |||
| 3df6c2de75 | |||
| 5c39a1eff1 | |||
| 0a3707ee63 | |||
| e91cac40bf | |||
| 718871fbc3 | |||
| 76fc5cd092 | |||
| 1670042e9b | |||
| 997659d97d |
115
src/app/about/page.tsx
Normal file
115
src/app/about/page.tsx
Normal file
@@ -0,0 +1,115 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="medium"
|
||||
background="aurora"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Programs", id: "/programs" },
|
||||
{ name: "Rates", id: "/rates" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-photo/peace-sign-rainbow-hearts_23-2148514694.jpg"
|
||||
logoAlt="Rainbow Hands Childcare logo"
|
||||
brandName="Rainbow Hands Childcare"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-intro" data-section="about-intro">
|
||||
<MetricSplitMediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="Our Commitment to Your Child's Growth"
|
||||
description="At Rainbow Hands, we believe in fostering a holistic environment where every child feels cherished, stimulated, and safe. Our personalized approach supports cognitive, social, and emotional development, laying a strong foundation for future success."
|
||||
metrics={[
|
||||
{ value: "10+", title: "Years Experience" },
|
||||
{ value: "Certified", title: "Care Providers" },
|
||||
{ value: "5-Star", title: "Parent Reviews" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/mother-helping-daughter-with-her-homework_23-2147997777.jpg?_wi=2"
|
||||
imageAlt="Caregiver playing with children with toys"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-provider" data-section="about-provider">
|
||||
<MetricSplitMediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Meet Yessica, Your Child's Nurturing Guide"
|
||||
description="Yessica brings over 15 years of dedicated experience in early childhood education, holding certifications in pediatric First Aid & CPR, and early childhood development. Her caregiving philosophy centers on fostering a child-led, play-based learning environment where every child feels secure, respected, and encouraged to explore their unique potential. Parents consistently praise her patience, kindness, and ability to connect deeply with each child."
|
||||
metrics={[
|
||||
{ value: "15+", title: "Years Experience" },
|
||||
{ value: "Certified", title: "Child Development" },
|
||||
{ value: "First Aid", title: "& CPR Trained" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-kid-drawing-together_23-2148866776.jpg?_wi=2"
|
||||
imageAlt="Daycare provider Yessica smiling warmly"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoSrc="http://img.b2bpic.net/free-photo/peace-sign-rainbow-hearts_23-2148514694.jpg"
|
||||
logoAlt="Rainbow Hands Childcare logo"
|
||||
logoText="Rainbow Hands Childcare"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Programs", items: [
|
||||
{ label: "Infant Care", href: "/programs#infant" },
|
||||
{ label: "Toddler Program", href: "/programs#toddler" },
|
||||
{ label: "Preschool Prep", href: "/programs#preschool" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{ label: "Rates & Enrollment", href: "/rates" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
{ label: "FAQs", href: "/contact#faqs" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Facebook", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Email Us", href: "mailto:info@rainbowhands.com" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 Rainbow Hands Childcare. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
152
src/app/contact/page.tsx
Normal file
152
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,152 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="medium"
|
||||
background="aurora"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"
|
||||
},
|
||||
{
|
||||
name: "About", id: "/about"
|
||||
},
|
||||
{
|
||||
name: "Programs", id: "/programs"
|
||||
},
|
||||
{
|
||||
name: "Rates", id: "/rates"
|
||||
},
|
||||
{
|
||||
name: "Gallery", id: "/gallery"
|
||||
},
|
||||
{
|
||||
name: "Contact", id: "/contact"
|
||||
}
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-photo/peace-sign-rainbow-hearts_23-2148514694.jpg"
|
||||
logoAlt="Rainbow Hands Childcare logo"
|
||||
brandName="Rainbow Hands Childcare"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-form-inquiry" data-section="contact-form-inquiry">
|
||||
<ContactCenter
|
||||
tag="Get in Touch"
|
||||
title="Send Us Your Inquiry"
|
||||
description="Have a question or need more information? Fill out the form below and we'll get back to you shortly."
|
||||
inputPlaceholder="Your Email Address"
|
||||
buttonText="Send Message"
|
||||
onSubmit={(email) => console.log("Inquiry submitted:", email)}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-information" data-section="contact-information">
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Connect With Us"
|
||||
title="Contact Information"
|
||||
description="Reach out to Rainbow Hands Childcare. We are here to answer your questions and provide the best care for your child."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Us: (408) 903-9413", href: "tel:+14089039413"
|
||||
},
|
||||
{
|
||||
text: "Email Us: info@rainbowhands.com", href: "mailto:info@rainbowhands.com"
|
||||
},
|
||||
{
|
||||
text: "Visit Us: 1015 Live Oak Dr, Santa Clara, CA 95051", href: "https://maps.app.goo.gl/example"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoSrc="http://img.b2bpic.net/free-photo/peace-sign-rainbow-hearts_23-2148514694.jpg"
|
||||
logoAlt="Rainbow Hands Childcare logo"
|
||||
logoText="Rainbow Hands Childcare"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home", href: "/"
|
||||
},
|
||||
{
|
||||
label: "About Us", href: "/about"
|
||||
},
|
||||
{
|
||||
label: "Contact", href: "/contact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Programs", items: [
|
||||
{
|
||||
label: "Infant Care", href: "/programs#infant"
|
||||
},
|
||||
{
|
||||
label: "Toddler Program", href: "/programs#toddler"
|
||||
},
|
||||
{
|
||||
label: "Preschool Prep", href: "/programs#preschool"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Rates & Enrollment", href: "/rates"
|
||||
},
|
||||
{
|
||||
label: "Gallery", href: "/gallery"
|
||||
},
|
||||
{
|
||||
label: "FAQs", href: "/contact#faqs"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Facebook", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Instagram", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Email Us", href: "mailto:info@rainbowhands.com"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 Rainbow Hands Childcare. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
119
src/app/gallery/page.tsx
Normal file
119
src/app/gallery/page.tsx
Normal file
@@ -0,0 +1,119 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function GalleryPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="medium"
|
||||
background="aurora"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Programs", id: "/programs" },
|
||||
{ name: "Rates", id: "/rates" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-photo/peace-sign-rainbow-hearts_23-2148514694.jpg"
|
||||
logoAlt="Rainbow Hands Childcare logo"
|
||||
brandName="Rainbow Hands Childcare"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery-intro" data-section="gallery-intro">
|
||||
<MetricSplitMediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="A Glimpse into Our Happy Home"
|
||||
description="Explore our vibrant play areas, cozy napping nooks, and engaging learning spaces designed to spark joy and curiosity in every child. We believe in providing an environment that feels like a second home."
|
||||
metrics={[
|
||||
{ value: "Bright", title: "Learning Spaces" },
|
||||
{ value: "Secure", title: "Outdoor Play" },
|
||||
{ value: "Cozy", title: "Rest Areas" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/childrens-park-reading_23-2148598907.jpg?_wi=2"
|
||||
imageAlt="Bright and colorful playroom in a home daycare"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="photo-gallery" data-section="photo-gallery">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
carouselMode="buttons"
|
||||
products={[
|
||||
{ id: "gallery-item-1", name: "Outdoor Fun", price: "Playtime", variant: "Outdoor", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-beach_23-2148601512.jpg?_wi=2", imageAlt: "Child playing on a swing outdoors" },
|
||||
{ id: "gallery-item-2", name: "Creative Building", price: "Learning", variant: "Indoor", imageSrc: "http://img.b2bpic.net/free-photo/young-boy-playing-jenga-home_23-2148577234.jpg?_wi=2", imageAlt: "Children building blocks together" },
|
||||
{ id: "gallery-item-3", name: "Story Time Magic", price: "Engage", variant: "Quiet", imageSrc: "http://img.b2bpic.net/free-photo/mother-sanitizing-her-children-s-hands_23-2148501295.jpg?_wi=2", imageAlt: "Caregiver reading to children" },
|
||||
{ id: "gallery-item-4", name: "Healthy Meals", price: "Nourish", variant: "Meals", imageSrc: "http://img.b2bpic.net/free-photo/sister-pouring-milk-her-brother_23-2148277112.jpg?_wi=2", imageAlt: "Children eating healthy snacks at a table" },
|
||||
{ id: "gallery-item-5", name: "Peaceful Naps", price: "Rest", variant: "Quiet", imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-adorable-european-female-kid-having-serious-concentrated-look-while-using-phone_273609-9499.jpg?_wi=2", imageAlt: "Toddler napping comfortably" },
|
||||
{ id: "gallery-item-6", name: "Art & Expression", price: "Create", variant: "Art", imageSrc: "http://img.b2bpic.net/free-photo/multicolored-artist-palettes-copy-space_23-2148745543.jpg?_wi=2", imageAlt: "Children doing arts and crafts" }
|
||||
]}
|
||||
title="Our Daily Adventures Photo Gallery"
|
||||
description="See our children engaged in various activities, enjoying nutritious meals, and discovering new things every day in a fun and safe environment."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoSrc="http://img.b2bpic.net/free-photo/peace-sign-rainbow-hearts_23-2148514694.jpg"
|
||||
logoAlt="Rainbow Hands Childcare logo"
|
||||
logoText="Rainbow Hands Childcare"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Programs", items: [
|
||||
{ label: "Infant Care", href: "/programs#infant" },
|
||||
{ label: "Toddler Program", href: "/programs#toddler" },
|
||||
{ label: "Preschool Prep", href: "/programs#preschool" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{ label: "Rates & Enrollment", href: "/rates" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
{ label: "FAQs", href: "/contact#faqs" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Facebook", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Email Us", href: "mailto:info@rainbowhands.com" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Rainbow Hands Childcare. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
405
src/app/page.tsx
405
src/app/page.tsx
@@ -12,7 +12,6 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
|
||||
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import { Sparkles } from "lucide-react";
|
||||
|
||||
@@ -35,29 +34,17 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Programs",
|
||||
id: "/programs",
|
||||
},
|
||||
name: "Programs", id: "/programs"},
|
||||
{
|
||||
name: "Rates",
|
||||
id: "/rates",
|
||||
},
|
||||
name: "Rates", id: "/rates-enrollment"},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
name: "Gallery", id: "/gallery"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-photo/peace-sign-rainbow-hearts_23-2148514694.jpg"
|
||||
logoAlt="Rainbow Hands Childcare logo"
|
||||
@@ -68,19 +55,14 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
title="Nurturing Care for Bright Futures"
|
||||
description="Providing a safe, loving, and stimulating home environment where children grow, learn, and thrive every day."
|
||||
buttons={[
|
||||
{
|
||||
text: "Schedule a Tour",
|
||||
href: "/contact",
|
||||
},
|
||||
text: "Schedule a Tour", href: "/contact"},
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "/about",
|
||||
},
|
||||
text: "Learn More", href: "/about"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-family-jumping-green-nature_23-2148201605.jpg"
|
||||
imageAlt="Happy family with children in a warm home setting"
|
||||
@@ -94,19 +76,13 @@ export default function LandingPage() {
|
||||
description="At Rainbow Hands, we believe in fostering a holistic environment where every child feels cherished, stimulated, and safe. Our personalized approach supports cognitive, social, and emotional development, laying a strong foundation for future success."
|
||||
metrics={[
|
||||
{
|
||||
value: "10+",
|
||||
title: "Years Experience",
|
||||
},
|
||||
value: "10+", title: "Years Experience"},
|
||||
{
|
||||
value: "Certified",
|
||||
title: "Care Providers",
|
||||
},
|
||||
value: "Certified", title: "Care Providers"},
|
||||
{
|
||||
value: "5-Star",
|
||||
title: "Parent Reviews",
|
||||
},
|
||||
value: "5-Star", title: "Parent Reviews"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/mother-helping-daughter-with-her-homework_23-2147997777.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/mother-helping-daughter-with-her-homework_23-2147997777.jpg?_wi=1"
|
||||
imageAlt="Caregiver playing with children with toys"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
@@ -121,29 +97,17 @@ export default function LandingPage() {
|
||||
author="Swetosree Sinha"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/thoughtful-young-blonde-girl-biting-her-lip-standing-isolated-white-wall-with-copy-space_141793-79140.jpg",
|
||||
alt: "Swetosree Sinha avatar",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/thoughtful-young-blonde-girl-biting-her-lip-standing-isolated-white-wall-with-copy-space_141793-79140.jpg", alt: "Swetosree Sinha avatar"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/handsome-business-man-wearing-suit-looking-camera-smiling-broadly-with-happy-face-standing-white-background_141793-54115.jpg",
|
||||
alt: "Crystal Avalos avatar",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/handsome-business-man-wearing-suit-looking-camera-smiling-broadly-with-happy-face-standing-white-background_141793-54115.jpg", alt: "Crystal Avalos avatar"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-happy-young-woman-emotion-concept-emotion-joy_169016-66075.jpg",
|
||||
alt: "Miriam Pastora avatar",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-happy-young-woman-emotion-concept-emotion-joy_169016-66075.jpg", alt: "Miriam Pastora avatar"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/surrealist-portrait-kid_23-2151426241.jpg",
|
||||
alt: "Parent avatar",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/surrealist-portrait-kid_23-2151426241.jpg", alt: "Parent avatar"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-mothers-day-celebration_23-2151306168.jpg",
|
||||
alt: "Satisfied parent testimonial avatar",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-mothers-day-celebration_23-2151306168.jpg", alt: "Satisfied parent testimonial avatar"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cartoon-style-hugging-day-celebration_23-2151033331.jpg",
|
||||
alt: "Happy parent avatar",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/cartoon-style-hugging-day-celebration_23-2151033331.jpg", alt: "Happy parent avatar"},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -155,14 +119,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Licensed & Insured",
|
||||
"First Aid Certified",
|
||||
"CPR Certified",
|
||||
"Early Childhood Education Certified",
|
||||
"Safe Sleep Certified",
|
||||
"Nutritional Program Accredited",
|
||||
"Positive Behavior Support",
|
||||
]}
|
||||
"Licensed & Insured", "First Aid Certified", "CPR Certified", "Early Childhood Education Certified", "Safe Sleep Certified", "Nutritional Program Accredited", "Positive Behavior Support"]}
|
||||
title="Trusted by Parents, Certified by Experts"
|
||||
description="We maintain the highest standards of care and education, backed by recognized certifications and unwavering trust from our families."
|
||||
/>
|
||||
@@ -176,23 +133,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Safe & Secure Play Zones",
|
||||
description: "Our indoor and outdoor areas are child-proofed and regularly inspected, providing a worry-free space for exploration.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-kid-playing-outdoors_23-2149604343.jpg",
|
||||
imageAlt: "Child playing in a secure outdoor area",
|
||||
},
|
||||
title: "Safe & Secure Play Zones", description: "Our indoor and outdoor areas are child-proofed and regularly inspected, providing a worry-free space for exploration.", imageSrc: "http://img.b2bpic.net/free-photo/happy-kid-playing-outdoors_23-2149604343.jpg", imageAlt: "Child playing in a secure outdoor area"},
|
||||
{
|
||||
title: "Nutritious & Delicious Meals",
|
||||
description: "We offer fresh, wholesome, and balanced meals and snacks prepared daily, catering to various dietary needs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/little-girl-having-her-breakfast_23-2148179435.jpg",
|
||||
imageAlt: "Children eating healthy snacks",
|
||||
},
|
||||
title: "Nutritious & Delicious Meals", description: "We offer fresh, wholesome, and balanced meals and snacks prepared daily, catering to various dietary needs.", imageSrc: "http://img.b2bpic.net/free-photo/little-girl-having-her-breakfast_23-2148179435.jpg", imageAlt: "Children eating healthy snacks"},
|
||||
{
|
||||
title: "Experienced & Loving Staff",
|
||||
description: "Our team consists of highly trained and passionate caregivers dedicated to fostering a supportive and enriching atmosphere.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-celebrating-kid-his-first-years-life_23-2149219464.jpg",
|
||||
imageAlt: "Caregiver interacting with children",
|
||||
},
|
||||
title: "Experienced & Loving Staff", description: "Our team consists of highly trained and passionate caregivers dedicated to fostering a supportive and enriching atmosphere.", imageSrc: "http://img.b2bpic.net/free-photo/family-celebrating-kid-his-first-years-life_23-2149219464.jpg", imageAlt: "Caregiver interacting with children"},
|
||||
]}
|
||||
title="Safety & Joy in Every Detail"
|
||||
description="Our environment is designed with meticulous attention to safety, cleanliness, and engaging play, ensuring peace of mind for parents and endless fun for children."
|
||||
@@ -206,59 +151,19 @@ export default function LandingPage() {
|
||||
description="Yessica brings over 15 years of dedicated experience in early childhood education, holding certifications in pediatric First Aid & CPR, and early childhood development. Her caregiving philosophy centers on fostering a child-led, play-based learning environment where every child feels secure, respected, and encouraged to explore their unique potential. Parents consistently praise her patience, kindness, and ability to connect deeply with each child."
|
||||
metrics={[
|
||||
{
|
||||
value: "15+",
|
||||
title: "Years Experience",
|
||||
},
|
||||
value: "15+", title: "Years Experience"},
|
||||
{
|
||||
value: "Certified",
|
||||
title: "Child Development",
|
||||
},
|
||||
value: "Certified", title: "Child Development"},
|
||||
{
|
||||
value: "First Aid",
|
||||
title: "& CPR Trained",
|
||||
},
|
||||
value: "First Aid", title: "& CPR Trained"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-kid-drawing-together_23-2148866776.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-kid-drawing-together_23-2148866776.jpg?_wi=1"
|
||||
imageAlt="Daycare provider Yessica smiling warmly"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardSix
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
members={[
|
||||
{
|
||||
id: "yessica",
|
||||
name: "Yessica Perez",
|
||||
role: "Lead Caregiver & Founder",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/multiracial-family-home-doing-high-five_53876-127060.jpg",
|
||||
imageAlt: "Yessica Perez, Lead Caregiver",
|
||||
},
|
||||
{
|
||||
id: "assistant-1",
|
||||
name: "Maria Rodriguez",
|
||||
role: "Assistant Caregiver",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-beautiful-young-woman-posing-with-white-screen_1301-6798.jpg",
|
||||
imageAlt: "Maria Rodriguez, Assistant Caregiver",
|
||||
},
|
||||
{
|
||||
id: "assistant-2",
|
||||
name: "David Chen",
|
||||
role: "Activities Coordinator",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-indian-origin-having-fun_23-2150285285.jpg",
|
||||
imageAlt: "David Chen, Activities Coordinator",
|
||||
},
|
||||
]}
|
||||
title="Our Dedicated Care Team"
|
||||
description="Our team members are passionate, certified, and committed to providing the best possible care and education for your child, ensuring a loving and supportive environment every day."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="program-features" data-section="program-features">
|
||||
<FeatureCardOne
|
||||
animationType="slide-up"
|
||||
@@ -267,23 +172,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Infant Discovery (0-12 months)",
|
||||
description: "A nurturing program focused on sensory exploration, tummy time, language development, and secure attachment through gentle care and interaction.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/child-playing-with-toys-full-shot_23-2149357235.jpg",
|
||||
imageAlt: "Infant playing with soft toys",
|
||||
},
|
||||
title: "Infant Discovery (0-12 months)", description: "A nurturing program focused on sensory exploration, tummy time, language development, and secure attachment through gentle care and interaction.", imageSrc: "http://img.b2bpic.net/free-photo/child-playing-with-toys-full-shot_23-2149357235.jpg?_wi=1", imageAlt: "Infant playing with soft toys"},
|
||||
{
|
||||
title: "Toddler Explorers (1-2 years)",
|
||||
description: "Our toddler program encourages independent play, social interaction, gross motor skill development, and early problem-solving through hands-on activities.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-kids-laughing-outdoors_23-2149073576.jpg",
|
||||
imageAlt: "Toddlers playing with blocks",
|
||||
},
|
||||
title: "Toddler Explorers (1-2 years)", description: "Our toddler program encourages independent play, social interaction, gross motor skill development, and early problem-solving through hands-on activities.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-kids-laughing-outdoors_23-2149073576.jpg?_wi=1", imageAlt: "Toddlers playing with blocks"},
|
||||
{
|
||||
title: "Preschool Adventures (2-5 years)",
|
||||
description: "Preparing children for kindergarten with a blend of academic readiness, creative arts, outdoor play, and social-emotional learning in a fun group setting.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-kids_23-2149110282.jpg",
|
||||
imageAlt: "Preschool children painting",
|
||||
},
|
||||
title: "Preschool Adventures (2-5 years)", description: "Preparing children for kindergarten with a blend of academic readiness, creative arts, outdoor play, and social-emotional learning in a fun group setting.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-kids_23-2149110282.jpg?_wi=1", imageAlt: "Preschool children painting"},
|
||||
]}
|
||||
title="Our Engaging Daily Programs"
|
||||
description="We offer a rich array of age-appropriate activities designed to stimulate curiosity, foster social skills, and support the developmental milestones of each child."
|
||||
@@ -296,20 +189,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What is a typical daily schedule like?",
|
||||
content: "Our day balances structured activities with free play, including circle time, creative arts, outdoor exploration, nutritious meals, and quiet rest periods tailored to each age group.",
|
||||
},
|
||||
id: "1", title: "What is a typical daily schedule like?", content: "Our day balances structured activities with free play, including circle time, creative arts, outdoor exploration, nutritious meals, and quiet rest periods tailored to each age group."},
|
||||
{
|
||||
id: "2",
|
||||
title: "What kind of activities do you offer?",
|
||||
content: "Activities vary by age and include sensory play, building blocks, puzzles, story time, music and movement, painting, drawing, and plenty of outdoor play in our secure yard.",
|
||||
},
|
||||
id: "2", title: "What kind of activities do you offer?", content: "Activities vary by age and include sensory play, building blocks, puzzles, story time, music and movement, painting, drawing, and plenty of outdoor play in our secure yard."},
|
||||
{
|
||||
id: "3",
|
||||
title: "How do you handle nap times?",
|
||||
content: "We provide cozy, supervised nap areas for children who need rest. Our schedule includes a designated nap time, but we also accommodate individual sleep needs.",
|
||||
},
|
||||
id: "3", title: "How do you handle nap times?", content: "We provide cozy, supervised nap areas for children who need rest. Our schedule includes a designated nap time, but we also accommodate individual sleep needs."},
|
||||
]}
|
||||
title="Frequently Asked Questions About Our Programs"
|
||||
description="Find answers to common questions regarding our daily routines, educational approach, and specific activities for each age group."
|
||||
@@ -324,59 +208,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "full-time",
|
||||
tag: "Daily Care",
|
||||
price: "$XXX",
|
||||
period: "/month",
|
||||
description: "Comprehensive full-day care for consistent support.",
|
||||
button: {
|
||||
text: "Inquire Now",
|
||||
href: "/contact",
|
||||
},
|
||||
featuresTitle: "Includes:",
|
||||
features: [
|
||||
"Monday-Friday, 7:30 AM - 5:30 PM",
|
||||
"All meals & snacks",
|
||||
"Structured activities",
|
||||
"Outdoor playtime",
|
||||
],
|
||||
id: "full-time", tag: "Daily Care", price: "$XXX", period: "/month", description: "Comprehensive full-day care for consistent support.", button: {
|
||||
text: "Inquire Now", href: "/rates-enrollment"},
|
||||
featuresTitle: "Includes:", features: [
|
||||
"Monday-Friday, 7:00 AM - 5:00 PM", "All meals & snacks", "Structured activities", "Outdoor playtime"],
|
||||
},
|
||||
{
|
||||
id: "part-time",
|
||||
tag: "Flexible",
|
||||
tagIcon: Sparkles,
|
||||
price: "$YYY",
|
||||
period: "/month",
|
||||
description: "Part-time options tailored to your family's schedule.",
|
||||
button: {
|
||||
text: "Inquire Now",
|
||||
href: "/contact",
|
||||
},
|
||||
featuresTitle: "Includes:",
|
||||
features: [
|
||||
"Minimum 3 full days/week",
|
||||
"Meals & snacks on care days",
|
||||
"Engaging activities",
|
||||
"Flexible scheduling",
|
||||
],
|
||||
id: "part-time", tag: "Flexible", tagIcon: Sparkles,
|
||||
price: "$YYY", period: "/month", description: "Part-time options tailored to your family's schedule.", button: {
|
||||
text: "Inquire Now", href: "/rates-enrollment"},
|
||||
featuresTitle: "Includes:", features: [
|
||||
"Minimum 3 full days/week", "Meals & snacks on care days", "Engaging activities", "Flexible scheduling"],
|
||||
},
|
||||
{
|
||||
id: "drop-in",
|
||||
tag: "As Needed",
|
||||
price: "$ZZZ",
|
||||
period: "/day",
|
||||
description: "Occasional care for those days when you need extra support.",
|
||||
button: {
|
||||
text: "Inquire Now",
|
||||
href: "/contact",
|
||||
},
|
||||
featuresTitle: "Includes:",
|
||||
features: [
|
||||
"Subject to availability",
|
||||
"Meals & snacks on care day",
|
||||
"Full day of activities",
|
||||
"Advance booking required",
|
||||
],
|
||||
id: "drop-in", tag: "As Needed", price: "$ZZZ", period: "/day", description: "Occasional care for those days when you need extra support.", button: {
|
||||
text: "Inquire Now", href: "/rates-enrollment"},
|
||||
featuresTitle: "Includes:", features: [
|
||||
"Subject to availability", "Meals & snacks on care day", "Full day of activities", "Advance booking required"],
|
||||
},
|
||||
]}
|
||||
title="Flexible Rates & Enrollment Options"
|
||||
@@ -391,19 +239,13 @@ export default function LandingPage() {
|
||||
description="Explore our vibrant play areas, cozy napping nooks, and engaging learning spaces designed to spark joy and curiosity in every child. We believe in providing an environment that feels like a second home."
|
||||
metrics={[
|
||||
{
|
||||
value: "Bright",
|
||||
title: "Learning Spaces",
|
||||
},
|
||||
value: "Bright", title: "Learning Spaces"},
|
||||
{
|
||||
value: "Secure",
|
||||
title: "Outdoor Play",
|
||||
},
|
||||
value: "Secure", title: "Outdoor Play"},
|
||||
{
|
||||
value: "Cozy",
|
||||
title: "Rest Areas",
|
||||
},
|
||||
value: "Cozy", title: "Rest Areas"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/childrens-park-reading_23-2148598907.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/childrens-park-reading_23-2148598907.jpg?_wi=1"
|
||||
imageAlt="Bright and colorful playroom in a home daycare"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
@@ -419,53 +261,17 @@ export default function LandingPage() {
|
||||
carouselMode="buttons"
|
||||
products={[
|
||||
{
|
||||
id: "gallery-item-1",
|
||||
name: "Outdoor Fun",
|
||||
price: "Playtime",
|
||||
variant: "Outdoor",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-beach_23-2148601512.jpg",
|
||||
imageAlt: "Child playing on a swing outdoors",
|
||||
},
|
||||
id: "gallery-item-1", name: "Outdoor Fun", price: "Playtime", variant: "Outdoor", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-beach_23-2148601512.jpg?_wi=1", imageAlt: "Child playing on a swing outdoors"},
|
||||
{
|
||||
id: "gallery-item-2",
|
||||
name: "Creative Building",
|
||||
price: "Learning",
|
||||
variant: "Indoor",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-boy-playing-jenga-home_23-2148577234.jpg",
|
||||
imageAlt: "Children building blocks together",
|
||||
},
|
||||
id: "gallery-item-2", name: "Creative Building", price: "Learning", variant: "Indoor", imageSrc: "http://img.b2bpic.net/free-photo/young-boy-playing-jenga-home_23-2148577234.jpg?_wi=1", imageAlt: "Children building blocks together"},
|
||||
{
|
||||
id: "gallery-item-3",
|
||||
name: "Story Time Magic",
|
||||
price: "Engage",
|
||||
variant: "Quiet",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mother-sanitizing-her-children-s-hands_23-2148501295.jpg",
|
||||
imageAlt: "Caregiver reading to children",
|
||||
},
|
||||
id: "gallery-item-3", name: "Story Time Magic", price: "Engage", variant: "Quiet", imageSrc: "http://img.b2bpic.net/free-photo/mother-sanitizing-her-children-s-hands_23-2148501295.jpg?_wi=1", imageAlt: "Caregiver reading to children"},
|
||||
{
|
||||
id: "gallery-item-4",
|
||||
name: "Healthy Meals",
|
||||
price: "Nourish",
|
||||
variant: "Meals",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sister-pouring-milk-her-brother_23-2148277112.jpg",
|
||||
imageAlt: "Children eating healthy snacks at a table",
|
||||
},
|
||||
id: "gallery-item-4", name: "Healthy Meals", price: "Nourish", variant: "Meals", imageSrc: "http://img.b2bpic.net/free-photo/sister-pouring-milk-her-brother_23-2148277112.jpg?_wi=1", imageAlt: "Children eating healthy snacks at a table"},
|
||||
{
|
||||
id: "gallery-item-5",
|
||||
name: "Peaceful Naps",
|
||||
price: "Rest",
|
||||
variant: "Quiet",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-adorable-european-female-kid-having-serious-concentrated-look-while-using-phone_273609-9499.jpg",
|
||||
imageAlt: "Toddler napping comfortably",
|
||||
},
|
||||
id: "gallery-item-5", name: "Peaceful Naps", price: "Rest", variant: "Quiet", imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-adorable-european-female-kid-having-serious-concentrated-look-while-using-phone_273609-9499.jpg?_wi=1", imageAlt: "Toddler napping comfortably"},
|
||||
{
|
||||
id: "gallery-item-6",
|
||||
name: "Art & Expression",
|
||||
price: "Create",
|
||||
variant: "Art",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/multicolored-artist-palettes-copy-space_23-2148745543.jpg",
|
||||
imageAlt: "Children doing arts and crafts",
|
||||
},
|
||||
id: "gallery-item-6", name: "Art & Expression", price: "Create", variant: "Art", imageSrc: "http://img.b2bpic.net/free-photo/multicolored-artist-palettes-copy-space_23-2148745543.jpg?_wi=1", imageAlt: "Children doing arts and crafts"},
|
||||
]}
|
||||
title="Our Daily Adventures Photo Gallery"
|
||||
description="See our children engaged in various activities, enjoying nutritious meals, and discovering new things every day in a fun and safe environment."
|
||||
@@ -478,20 +284,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Where is Rainbow Hands Childcare located?",
|
||||
content: "We are conveniently located at 1015 Live Oak Dr, Santa Clara, CA 95051, offering easy access for local families.",
|
||||
},
|
||||
id: "1", title: "Where is Rainbow Hands Childcare located?", content: "We are conveniently located at 1015 Live Oak Dr, Santa Clara, CA 95051, offering easy access for local families."},
|
||||
{
|
||||
id: "2",
|
||||
title: "What are your hours of operation?",
|
||||
content: "Our childcare services are available Monday through Friday, from 7:30 AM to 5:30 PM, accommodating full-day and part-time schedules.",
|
||||
},
|
||||
id: "2", title: "What are your hours of operation?", content: "Our childcare services are available Monday through Friday, from 7:30 AM to 5:30 PM, accommodating full-day and part-time schedules."},
|
||||
{
|
||||
id: "3",
|
||||
title: "How do I schedule a tour?",
|
||||
content: "You can schedule a tour by filling out our inquiry form on the Rates & Enrollment page, emailing us directly, or giving us a call during business hours.",
|
||||
},
|
||||
id: "3", title: "How do I schedule a tour?", content: "You can schedule a tour by filling out our inquiry form on the Rates & Enrollment page, emailing us directly, or giving us a call during business hours."},
|
||||
]}
|
||||
title="Common Questions for New Families"
|
||||
description="Find quick answers about our location, hours of operation, and what to expect during your first visit or inquiry process."
|
||||
@@ -503,20 +300,15 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Enroll Today"
|
||||
title="Ready to Join Our Family?"
|
||||
description="Spaces are limited! Fill out our inquiry form or give us a call to check current availability and schedule a visit. We look forward to welcoming you!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Inquire Now",
|
||||
href: "/contact",
|
||||
},
|
||||
text: "Inquire Now", href: "/contact"},
|
||||
{
|
||||
text: "Call Us",
|
||||
href: "tel:+14089039413",
|
||||
},
|
||||
text: "Call Us", href: "tel:+14089039413"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -525,20 +317,15 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Get in Touch"
|
||||
title="We'd Love to Hear From You!"
|
||||
description="Contact us to schedule a visit, inquire about enrollment, or simply ask any questions you may have. We are here to help and eager to meet your family."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Us Now",
|
||||
href: "tel:+14089039413",
|
||||
},
|
||||
text: "Call Us Now", href: "tel:+14089039413"},
|
||||
{
|
||||
text: "Send an Email",
|
||||
href: "mailto:info@rainbowhands.com",
|
||||
},
|
||||
text: "Send an Email", href: "mailto:info@rainbowhands.com"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -550,71 +337,43 @@ export default function LandingPage() {
|
||||
logoText="Rainbow Hands Childcare"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Programs",
|
||||
items: [
|
||||
title: "Programs", items: [
|
||||
{
|
||||
label: "Infant Care",
|
||||
href: "/programs#infant",
|
||||
},
|
||||
label: "Infant Care", href: "/programs#infant"},
|
||||
{
|
||||
label: "Toddler Program",
|
||||
href: "/programs#toddler",
|
||||
},
|
||||
label: "Toddler Program", href: "/programs#toddler"},
|
||||
{
|
||||
label: "Preschool Prep",
|
||||
href: "/programs#preschool",
|
||||
},
|
||||
label: "Preschool Prep", href: "/programs#preschool"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Rates & Enrollment",
|
||||
href: "/rates",
|
||||
},
|
||||
label: "Rates & Enrollment", href: "/rates-enrollment"},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
label: "Gallery", href: "/gallery"},
|
||||
{
|
||||
label: "FAQs",
|
||||
href: "/contact#faqs",
|
||||
},
|
||||
label: "FAQs", href: "/contact#faqs"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
label: "Facebook", href: "#"},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
label: "Instagram", href: "#"},
|
||||
{
|
||||
label: "Email Us",
|
||||
href: "mailto:info@rainbowhands.com",
|
||||
},
|
||||
label: "Email Us", href: "mailto:info@rainbowhands.com"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -624,4 +383,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
182
src/app/programs/page.tsx
Normal file
182
src/app/programs/page.tsx
Normal file
@@ -0,0 +1,182 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function ProgramsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="medium"
|
||||
background="aurora"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"
|
||||
},
|
||||
{
|
||||
name: "About", id: "/about"
|
||||
},
|
||||
{
|
||||
name: "Programs", id: "/programs"
|
||||
},
|
||||
{
|
||||
name: "Rates", id: "/rates"
|
||||
},
|
||||
{
|
||||
name: "Gallery", id: "/gallery"
|
||||
},
|
||||
{
|
||||
name: "Contact", id: "/contact"
|
||||
}
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-photo/peace-sign-rainbow-hearts_23-2148514694.jpg"
|
||||
logoAlt="Rainbow Hands Childcare logo"
|
||||
brandName="Rainbow Hands Childcare"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="programs-hero" data-section="programs-hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "plain"
|
||||
}}
|
||||
title="Our Engaging Programs & Daily Schedule"
|
||||
description="Discover our age-appropriate programs designed to nurture every child's potential, creativity, and love for learning."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Our Programs", href: "#program-features-page"
|
||||
},
|
||||
{
|
||||
text: "FAQs", href: "#faq-programs-page"
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-kids-playing-outdoors_23-2149073576.jpg"
|
||||
imageAlt="Children happily engaged in various activities"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="program-features-page" data-section="program-features-page">
|
||||
<FeatureCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Infant Discovery (0-12 months)", description: "A nurturing program focused on sensory exploration, tummy time, language development, and secure attachment through gentle care and interaction.", imageSrc: "http://img.b2bpic.net/free-photo/child-playing-with-toys-full-shot_23-2149357235.jpg?_wi=2", imageAlt: "Infant playing with soft toys"
|
||||
},
|
||||
{
|
||||
title: "Toddler Explorers (1-2 years)", description: "Our toddler program encourages independent play, social interaction, gross motor skill development, and early problem-solving through hands-on activities.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-kids-laughing-outdoors_23-2149073576.jpg?_wi=2", imageAlt: "Toddlers playing with blocks"
|
||||
},
|
||||
{
|
||||
title: "Preschool Adventures (2-5 years)", description: "Preparing children for kindergarten with a blend of academic readiness, creative arts, outdoor play, and social-emotional learning in a fun group setting.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-kids_23-2149110282.jpg?_wi=2", imageAlt: "Preschool children painting"
|
||||
}
|
||||
]}
|
||||
title="Program Highlights by Age Group"
|
||||
description="We offer a rich array of age-appropriate activities designed to stimulate curiosity, foster social skills, and support the developmental milestones of each child."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq-programs-page" data-section="faq-programs-page">
|
||||
<FaqBase
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What is a typical daily schedule like?", content: "Our day balances structured activities with free play, including circle time, creative arts, outdoor exploration, nutritious meals, and quiet rest periods tailored to each age group."
|
||||
},
|
||||
{
|
||||
id: "2", title: "What kind of activities do you offer?", content: "Activities vary by age and include sensory play, building blocks, puzzles, story time, music and movement, painting, drawing, and plenty of outdoor play in our secure yard."
|
||||
},
|
||||
{
|
||||
id: "3", title: "How do you handle nap times?", content: "We provide cozy, supervised nap areas for children who need rest. Our schedule includes a designated nap time, but we also accommodate individual sleep needs."
|
||||
}
|
||||
]}
|
||||
title="Frequently Asked Questions About Our Programs"
|
||||
description="Find answers to common questions regarding our daily routines, educational approach, and specific activities for each age group."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoSrc="http://img.b2bpic.net/free-photo/peace-sign-rainbow-hearts_23-2148514694.jpg"
|
||||
logoAlt="Rainbow Hands Childcare logo"
|
||||
logoText="Rainbow Hands Childcare"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home", href: "/"
|
||||
},
|
||||
{
|
||||
label: "About Us", href: "/about"
|
||||
},
|
||||
{
|
||||
label: "Contact", href: "/contact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Programs", items: [
|
||||
{
|
||||
label: "Infant Care", href: "/programs#infant"
|
||||
},
|
||||
{
|
||||
label: "Toddler Program", href: "/programs#toddler"
|
||||
},
|
||||
{
|
||||
label: "Preschool Prep", href: "/programs#preschool"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Rates & Enrollment", href: "/rates"
|
||||
},
|
||||
{
|
||||
label: "Gallery", href: "/gallery"
|
||||
},
|
||||
{
|
||||
label: "FAQs", href: "/contact#faqs"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Facebook", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Instagram", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Email Us", href: "mailto:info@rainbowhands.com"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 Rainbow Hands Childcare. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
204
src/app/rates-enrollment/page.tsx
Normal file
204
src/app/rates-enrollment/page.tsx
Normal file
@@ -0,0 +1,204 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||
import { Sparkles } from "lucide-react";
|
||||
|
||||
export default function RatesEnrollmentPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="medium"
|
||||
background="aurora"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"
|
||||
},
|
||||
{
|
||||
name: "About", id: "/about"
|
||||
},
|
||||
{
|
||||
name: "Programs", id: "/programs"
|
||||
},
|
||||
{
|
||||
name: "Rates", id: "/rates-enrollment"
|
||||
},
|
||||
{
|
||||
name: "Gallery", id: "/gallery"
|
||||
},
|
||||
{
|
||||
name: "Contact", id: "/contact"
|
||||
}
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-photo/peace-sign-rainbow-hearts_23-2148514694.jpg"
|
||||
logoAlt="Rainbow Hands Childcare logo"
|
||||
brandName="Rainbow Hands Childcare"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardFive
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "full-time", tag: "Daily Care", price: "$XXX", period: "/month", description: "Comprehensive full-day care for consistent support.", button: {
|
||||
text: "Inquire Now", href: "/contact"
|
||||
},
|
||||
featuresTitle: "Includes:", features: [
|
||||
"Monday-Friday, 7:00 AM - 5:00 PM", "All meals & snacks", "Structured activities", "Outdoor playtime"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "part-time", tag: "Flexible", tagIcon: Sparkles,
|
||||
price: "$YYY", period: "/month", description: "Part-time options tailored to your family's schedule.", button: {
|
||||
text: "Inquire Now", href: "/contact"
|
||||
},
|
||||
featuresTitle: "Includes:", features: [
|
||||
"Minimum 3 full days/week", "Meals & snacks on care days", "Engaging activities", "Flexible scheduling"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "drop-in", tag: "As Needed", price: "$ZZZ", period: "/day", description: "Occasional care for those days when you need extra support.", button: {
|
||||
text: "Inquire Now", href: "/contact"
|
||||
},
|
||||
featuresTitle: "Includes:", features: [
|
||||
"Subject to availability", "Meals & snacks on care day", "Full day of activities", "Advance booking required"
|
||||
]
|
||||
}
|
||||
]}
|
||||
title="Our Flexible Rates & Enrollment Options"
|
||||
description="We offer various enrollment options designed to meet your family's needs. Please contact us to discuss current availability and find the perfect fit for your child."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="enrollment-intro" data-section="enrollment-intro">
|
||||
<MetricSplitMediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="Your Journey to Enrollment"
|
||||
description="We strive to make the enrollment process as smooth as possible for families. Our goal is to ensure a perfect fit for your child and our nurturing environment. Here’s a quick overview of how to get started."
|
||||
metrics={[
|
||||
{
|
||||
value: "1", title: "Schedule Visit"
|
||||
},
|
||||
{
|
||||
value: "2", title: "Application"
|
||||
},
|
||||
{
|
||||
value: "3", title: "Welcome!"
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/father-daughter-playing-together-park_23-2148201589.jpg"
|
||||
imageAlt="Family playing, symbolizing new beginnings"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="enrollment-faqs" data-section="enrollment-faqs">
|
||||
<FaqBase
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "How do I start the enrollment process?", content: "Begin by scheduling a tour of our facility through our contact page. After your visit, we'll guide you through the application forms and discuss availability."
|
||||
},
|
||||
{
|
||||
id: "2", title: "What documents are required for enrollment?", content: "Typically, we require a completed enrollment form, health records including immunization, and a signed parent-provider agreement. Specifics will be provided during your inquiry."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Is there a waiting list?", content: "Due to high demand, we sometimes have a waiting list. We encourage families to inquire early. We will inform you of current availability and estimated wait times during your tour."
|
||||
},
|
||||
{
|
||||
id: "4", title: "What is your sick child policy?", content: "For the health and safety of all children and staff, children with fever or contagious symptoms must stay home. Please refer to our full health policy provided upon enrollment."
|
||||
}
|
||||
]}
|
||||
title="Common Enrollment Questions"
|
||||
description="Have questions about the application process, required documents, or what to expect before your child starts? Find comprehensive answers here."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoSrc="http://img.b2bpic.net/free-photo/peace-sign-rainbow-hearts_23-2148514694.jpg"
|
||||
logoAlt="Rainbow Hands Childcare logo"
|
||||
logoText="Rainbow Hands Childcare"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home", href: "/"
|
||||
},
|
||||
{
|
||||
label: "About Us", href: "/about"
|
||||
},
|
||||
{
|
||||
label: "Contact", href: "/contact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Programs", items: [
|
||||
{
|
||||
label: "Infant Care", href: "/programs#infant"
|
||||
},
|
||||
{
|
||||
label: "Toddler Program", href: "/programs#toddler"
|
||||
},
|
||||
{
|
||||
label: "Preschool Prep", href: "/programs#preschool"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Rates & Enrollment", href: "/rates-enrollment"
|
||||
},
|
||||
{
|
||||
label: "Gallery", href: "/gallery"
|
||||
},
|
||||
{
|
||||
label: "FAQs", href: "/contact#faqs"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Facebook", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Instagram", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Email Us", href: "mailto:info@rainbowhands.com"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 Rainbow Hands Childcare. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user