Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bcccc0222c | |||
| 7891f76cfd |
176
src/app/page.tsx
176
src/app/page.tsx
@@ -31,21 +31,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Programs",
|
name: "Programs", id: "features"},
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Little Sprouts"
|
brandName="Little Sprouts"
|
||||||
/>
|
/>
|
||||||
@@ -54,60 +46,28 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboard
|
<HeroBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
|
||||||
title="Welcome to Our Daycare Family!"
|
title="Welcome to Our Daycare Family!"
|
||||||
description="Little Sprouts offers play-based daycare and preschool programs for children from 6 weeks through 5 years old. We believe in building deep, individual relationships with every child."
|
description="Little Sprouts offers play-based daycare and preschool programs for children from 6 weeks through 5 years old. We believe in building deep, individual relationships with every child."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "View Handbook",
|
text: "View Handbook", href: "https://canva.link/khfcwdlgog2ndyi"},
|
||||||
href: "https://canva.link/khfcwdlgog2ndyi",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/little-girls-playing-new-fidget-toy-popular-with-children-helps-them-concentrate_169016-12078.jpg"
|
imageSrc="https://lh3.googleusercontent.com/p/AF1QipN38m854h54Y2dZ4L4B-b7u4b-2jW-5L1N-3T62=s1600-w800-h600"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/medium-shot-kids-with-paint_23-2149027480.jpg",
|
src: "https://lh3.googleusercontent.com/p/AF1QipM_6pG8n52C3W-d4n9b8y52j2L7X1eK1x1a1a1a=s200", alt: "Kids classroom activity"},
|
||||||
alt: "Medium shot kids with paint",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/two-africanamerican-girls-drawing-floor-toddler-her-older-sister-drowing-paper_1157-51351.jpg",
|
src: "https://lh3.googleusercontent.com/p/AF1QipP_5a7k8L8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N=s200", alt: "Play area"},
|
||||||
alt: "Two africanamerican girls drawing on a floor. Toddler and her older sister drowing on a paper",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/children-having-fun-summer-camp_23-2150326047.jpg",
|
src: "https://lh3.googleusercontent.com/p/AF1QipL_1w9l9N9N9N9N9N9N9N9N9N9N9N9N9N9N9N9N=s200", alt: "Children playing"},
|
||||||
alt: "Children having fun at summer camp",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/pensive-pretty-fair-haired-girl-sitting-drawing-with-colorful-pieces-chalks-front-view-childhood-creativity-concept_74855-11897.jpg",
|
|
||||||
alt: "Pensive pretty fair haired girl sitting and drawing with colorful pieces of chalks. Front view. Childhood and creativity concept",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/variety-toys-childhood-items_93675-131898.jpg",
|
|
||||||
alt: "Variety of toys and childhood items",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{ type: "text", text: "Licensed Facility" },
|
||||||
type: "text",
|
{ type: "text", text: "Play-Based Curriculum" },
|
||||||
text: "Licensed Facility",
|
{ type: "text", text: "Experienced Staff" },
|
||||||
},
|
{ type: "text", text: "Healthy Meals Provided" },
|
||||||
{
|
{ type: "text", text: "Safe Environment" },
|
||||||
type: "text",
|
|
||||||
text: "Play-Based Curriculum",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
text: "Experienced Staff",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
text: "Healthy Meals Provided",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
text: "Safe Environment",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -117,8 +77,7 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
title="Learning, Love & Connection"
|
title="Learning, Love & Connection"
|
||||||
description={[
|
description={[
|
||||||
"Every child is fully seen, loved, and supported without favoritism. Your child is actively engaged and entertained throughout our beautifully balanced programs in Oak Park.",
|
"Every child is fully seen, loved, and supported without favoritism. Your child is actively engaged and entertained throughout our beautifully balanced programs in Oak Park."]}
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -130,26 +89,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Play-Based Learning",
|
title: "Play-Based Learning", description: "Engaging activities that foster curiosity.", imageSrc: "https://lh3.googleusercontent.com/p/AF1QipN_z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5z5=s800", titleImageSrc: "https://lh3.googleusercontent.com/p/AF1QipO_a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8a8=s400", buttonText: "Read More"},
|
||||||
description: "Engaging activities that foster curiosity.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-closeup-shot-colorful-keys-toy-piano_181624-27029.jpg",
|
|
||||||
titleImageSrc: "http://img.b2bpic.net/free-photo/kid-doing-occupational-therapy-session-with-psychologist_23-2149091548.jpg",
|
|
||||||
buttonText: "Read More",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Individual Care",
|
title: "Individual Care", description: "Deep relationships with every child.", imageSrc: "https://lh3.googleusercontent.com/p/AF1QipM_b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9b9=s800", titleImageSrc: "https://lh3.googleusercontent.com/p/AF1QipN_c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7c7=s400", buttonText: "Read More"},
|
||||||
description: "Deep relationships with every child.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-teaching-her-student-origami_23-2148925462.jpg",
|
|
||||||
titleImageSrc: "http://img.b2bpic.net/free-photo/mom-teaching-daughter-write_23-2148514419.jpg",
|
|
||||||
buttonText: "Read More",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Ages 6w - 5y",
|
title: "Ages 6w - 5y", description: "Programs tailored to every development stage.", imageSrc: "https://lh3.googleusercontent.com/p/AF1QipP_d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6=s800", titleImageSrc: "https://lh3.googleusercontent.com/p/AF1QipL_e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5e5=s400", buttonText: "Read More"},
|
||||||
description: "Programs tailored to every development stage.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-children-running-outdoors_1098-14001.jpg",
|
|
||||||
titleImageSrc: "http://img.b2bpic.net/free-photo/pizza-made-cardboard-paper_23-2150379719.jpg",
|
|
||||||
buttonText: "Read More",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Learning Philosophy"
|
title="Our Learning Philosophy"
|
||||||
description="Balanced development through play and individualized attention."
|
description="Balanced development through play and individualized attention."
|
||||||
@@ -162,20 +106,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Tuition Payments", content: "Tuition is $55 per session. Payments are due consistently. Late payments incur a $10 fee; please contact us for grace periods."},
|
||||||
title: "Tuition Payments",
|
|
||||||
content: "Tuition is due consistently. Late payments incur a $10 fee; please contact us for grace periods.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Hours of Operation", content: "We are open until 4:30 PM, Monday through Friday."},
|
||||||
title: "Hours of Operation",
|
|
||||||
content: "We are open until 4:30 PM, Monday through Friday.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Contact Details", content: "We are located at 266 Lake St, Oak Park, IL. Call us at (708) 202-9080."},
|
||||||
title: "Contact Details",
|
|
||||||
content: "We are located at 266 Lake St, Oak Park, IL. Call us at (708) 202-9080.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Parent Information"
|
title="Parent Information"
|
||||||
description="Common questions about tuition, schedules, and policies."
|
description="Common questions about tuition, schedules, and policies."
|
||||||
@@ -190,26 +125,8 @@ export default function LandingPage() {
|
|||||||
rating={5}
|
rating={5}
|
||||||
author="Happy Parent"
|
author="Happy Parent"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{ src: "https://lh3.googleusercontent.com/p/AF1QipM_k1k1k1k1k1k1k1k1k1k1k1k1k1k1k1k1k1k1=s200", alt: "Parent 1" },
|
||||||
src: "http://img.b2bpic.net/free-photo/father-daughter-laughing-together_23-2147615922.jpg",
|
{ src: "https://lh3.googleusercontent.com/p/AF1QipP_l2l2l2l2l2l2l2l2l2l2l2l2l2l2l2l2l2l2=s200", alt: "Parent 2" },
|
||||||
alt: "Parent",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/happy-father-hugging-his-son_23-2147562065.jpg",
|
|
||||||
alt: "Happy father hugging his son",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/smiling-child-hugging-their-parents_1098-890.jpg",
|
|
||||||
alt: "Smiling child hugging their parents",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/fathers-day-concept-with-smiling-father-daughter_23-2147805472.jpg",
|
|
||||||
alt: "Fathers day concept with smiling father and daughter",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/front-view-kid-woman-taking-selfie_23-2149514084.jpg",
|
|
||||||
alt: "Front view kid and woman taking selfie",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
ratingAnimation="slide-up"
|
ratingAnimation="slide-up"
|
||||||
avatarsAnimation="blur-reveal"
|
avatarsAnimation="blur-reveal"
|
||||||
@@ -221,14 +138,7 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
names={[
|
names={[
|
||||||
"Google Reviews",
|
"Google Reviews", "Oak Park Community", "Child Development Experts", "Local Families", "Early Education Network", "Play-Based Specialists", "Family Owned Business"]}
|
||||||
"Oak Park Community",
|
|
||||||
"Child Development Experts",
|
|
||||||
"Local Families",
|
|
||||||
"Early Education Network",
|
|
||||||
"Play-Based Specialists",
|
|
||||||
"Family Owned Business",
|
|
||||||
]}
|
|
||||||
title="Trusted by Families"
|
title="Trusted by Families"
|
||||||
description="Join our growing community in Oak Park."
|
description="Join our growing community in Oak Park."
|
||||||
/>
|
/>
|
||||||
@@ -237,17 +147,13 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{ variant: "plain" }}
|
||||||
variant: "plain",
|
|
||||||
}}
|
|
||||||
tag="Get in Touch"
|
tag="Get in Touch"
|
||||||
title="Visit Us in Oak Park"
|
title="Visit Us in Oak Park"
|
||||||
description="We are located at 266 Lake St, Oak Park, IL 60302. Call us to schedule a tour or ask questions."
|
description="We are located at 266 Lake St, Oak Park, IL 60302. Call us to schedule a tour or ask questions."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now",
|
text: "Call Now", href: "tel:7082029080"},
|
||||||
href: "tel:7082029080",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -257,29 +163,15 @@ export default function LandingPage() {
|
|||||||
logoText="Little Sprouts"
|
logoText="Little Sprouts"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Quick Links",
|
title: "Quick Links", items: [
|
||||||
items: [
|
{ label: "About Us", href: "#about" },
|
||||||
{
|
{ label: "Handbook", href: "https://canva.link/khfcwdlgog2ndyi" },
|
||||||
label: "About Us",
|
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Handbook",
|
|
||||||
href: "https://canva.link/khfcwdlgog2ndyi",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Location",
|
title: "Location", items: [
|
||||||
items: [
|
{ label: "266 Lake St, Oak Park", href: "#" },
|
||||||
{
|
{ label: "(708) 202-9080", href: "tel:7082029080" },
|
||||||
label: "266 Lake St, Oak Park",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "(708) 202-9080",
|
|
||||||
href: "tel:7082029080",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -288,4 +180,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user