import React from “react”;
import { Card, CardContent } from “@/components/ui/card”;
import { Button } from “@/components/ui/button”;
import { motion } from “framer-motion”;
import { Baby, BookOpen, Phone, MapPin, Clock } from “lucide-react”;
export default function EdenProspectDaycare() {
return (
{/* Hero Section */}


Eden Prospect Daycare

 

A nurturing, safe, and joyful environment where little minds grow,
explore, and shine every day.


{/* About Section */}

About Us

At Eden Prospect Daycare, we provide high-quality childcare for
infants, toddlers, and preschoolers. Our dedicated educators focus
on creativity, early learning, and emotional development in a warm
and supportive setting.




Infant & Toddler Care

Early Learning Programs

Flexible Hours


{/* Programs Section */}

Our Programs

{[
{
title: “Infants (0–18 months)”,
desc: “Gentle care focused on bonding, sensory play, and early milestones.”,
},
{
title: “Toddlers (18 months–3 years)”,
desc: “Hands-on exploration, language development, and social growth.”,
},
{
title: “Preschool (3–5 years)”,
desc: “Structured learning through play, preparing children for kindergarten.”,
},
].map((program, index) => (


}

import React from “react”; import { Card, CardContent } from “@/components/ui/card”; import { Button } from “@/components/ui/button”; import { motion } from “framer-motion”; import { Baby, BookOpen, Phone, MapPin, Clock } from “lucide-react”; export default function EdenProspectDaycare() { return (
{/* Hero Section */}
Eden Prospect Daycare

A nurturing, safe, and joyful environment where little minds grow, explore, and shine every day.

{/* About Section */}

About Us

At Eden Prospect Daycare, we provide high-quality childcare for infants, toddlers, and preschoolers. Our dedicated educators focus on creativity, early learning, and emotional development in a warm and supportive setting.

Infant & Toddler Care
Early Learning Programs
Flexible Hours
{/* Programs Section */}

Our Programs

{[ { title: “Infants (0–18 months)”, desc: “Gentle care focused on bonding, sensory play, and early milestones.”, }, { title: “Toddlers (18 months–3 years)”, desc: “Hands-on exploration, language development, and social growth.”, }, { title: “Preschool (3–5 years)”, desc: “Structured learning through play, preparing children for kindergarten.”, }, ].map((program, index) => (

{program.title}

{program.desc}

))}
{/* Contact Section */}

Contact Us

123 Eden Lane, Prospect City
(123) 456-7890
Monday – Friday | 7:00 AM – 6:00 PM
{/* Footer */}

© {new Date().getFullYear()} Eden Prospect Daycare. All rights reserved.

); }