Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d6e16f1f82 | |||
| 1e3a69523e |
277
src/app/page.tsx
277
src/app/page.tsx
@@ -12,7 +12,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
||||
import TeamCardTen from '@/components/sections/team/TeamCardTen';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import { BookOpen, Palette, Sparkles } from "lucide-react";
|
||||
import { Baby, BookOpen, Palette, Sparkles } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,22 +32,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Team",
|
||||
id: "team",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Smart Parrots"
|
||||
/>
|
||||
@@ -55,104 +43,32 @@ export default function LandingPage() {
|
||||
|
||||
<div id="home" data-section="home">
|
||||
<HeroSplitTestimonial
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="Smart Parrots Early Learning Centre"
|
||||
description="Nurturing young minds from 6 months to 6 years. With 4 locations across Dunoon and surrounds, we create a safe, stimulating environment for your child to flourish."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah Miller",
|
||||
handle: "Parent",
|
||||
testimonial: "My child loves coming here. The teachers are so caring and engaging.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/excited-kids-sitting-grass-park-looking-away-together-watching-performance-animators-show-kids-party-friendship-concept_74855-11677.jpg?_wi=1",
|
||||
imageAlt: "preschool children playing outdoors",
|
||||
},
|
||||
{
|
||||
name: "David Thompson",
|
||||
handle: "Parent",
|
||||
testimonial: "Exceptional early learning environment. The focus on development is clear.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/little-girl-sitting-table-with-toys_23-2147663559.jpg?_wi=1",
|
||||
imageAlt: "preschool children playing outdoors",
|
||||
},
|
||||
{
|
||||
name: "Emily R.",
|
||||
handle: "Parent",
|
||||
testimonial: "The staff are wonderful and communication is fantastic.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mother-child-daughter-draws-creatively-home-table_1153-9656.jpg?_wi=1",
|
||||
imageAlt: "preschool children playing outdoors",
|
||||
},
|
||||
{
|
||||
name: "James B.",
|
||||
handle: "Parent",
|
||||
testimonial: "My son has blossomed since joining. Highly recommended.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/children-playing-with-their-kindergarten-teacher_23-2148633345.jpg?_wi=1",
|
||||
imageAlt: "preschool children playing outdoors",
|
||||
},
|
||||
{
|
||||
name: "Linda K.",
|
||||
handle: "Parent",
|
||||
testimonial: "Safe, warm, and professional. Everything we looked for.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-children_23-2149110284.jpg?_wi=1",
|
||||
imageAlt: "preschool children playing outdoors",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book a Tour",
|
||||
href: "#contact",
|
||||
},
|
||||
{ name: "Sarah Miller", handle: "Parent", testimonial: "My child loves coming here. The teachers are so caring and engaging.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/excited-kids-sitting-grass-park-looking-away-together-watching-performance-animators-show-kids-party-friendship-concept_74855-11677.jpg?_wi=1", imageAlt: "preschool children playing outdoors" },
|
||||
{ name: "David Thompson", handle: "Parent", testimonial: "Exceptional early learning environment. The focus on development is clear.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/little-girl-sitting-table-with-toys_23-2147663559.jpg?_wi=1", imageAlt: "preschool children playing outdoors" },
|
||||
{ name: "Emily R.", handle: "Parent", testimonial: "The staff are wonderful and communication is fantastic.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/mother-child-daughter-draws-creatively-home-table_1153-9656.jpg?_wi=1", imageAlt: "preschool children playing outdoors" },
|
||||
{ name: "James B.", handle: "Parent", testimonial: "My son has blossomed since joining. Highly recommended.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/children-playing-with-their-kindergarten-teacher_23-2148633345.jpg?_wi=1", imageAlt: "preschool children playing outdoors" },
|
||||
{ name: "Linda K.", handle: "Parent", testimonial: "Safe, warm, and professional. Everything we looked for.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-children_23-2149110284.jpg?_wi=1", imageAlt: "preschool children playing outdoors" },
|
||||
]}
|
||||
buttons={[{ text: "Book a Tour", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/excited-kids-sitting-grass-park-looking-away-together-watching-performance-animators-show-kids-party-friendship-concept_74855-11677.jpg?_wi=2"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-elementary-students-having-fun_1098-2984.jpg",
|
||||
alt: "Parent smiling",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-kids-laying-floor_23-2149351765.jpg",
|
||||
alt: "Parent smiling",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/classmates-playing-with-colorful-letters_1098-1799.jpg",
|
||||
alt: "Parent smiling",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-teacher-with-her-elementary-students_1098-3846.jpg",
|
||||
alt: "Parent smiling",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-kid-cheating-school-test_23-2150105068.jpg",
|
||||
alt: "Parent smiling",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-elementary-students-having-fun_1098-2984.jpg", alt: "Parent smiling" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/medium-shot-kids-laying-floor_23-2149351765.jpg", alt: "Parent smiling" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/classmates-playing-with-colorful-letters_1098-1799.jpg", alt: "Parent smiling" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-teacher-with-her-elementary-students_1098-3846.jpg", alt: "Parent smiling" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/medium-shot-kid-cheating-school-test_23-2150105068.jpg", alt: "Parent smiling" },
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Learning",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Growth",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Community",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Discovery",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Excellence",
|
||||
},
|
||||
{ type: "text", text: "Learning" },
|
||||
{ type: "text", text: "Growth" },
|
||||
{ type: "text", text: "Community" },
|
||||
{ type: "text", text: "Discovery" },
|
||||
{ type: "text", text: "Excellence" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -177,29 +93,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Age-Appropriate Programs",
|
||||
description: "Tailored activities for every developmental stage.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/little-kids-playing-together-kindergarten_23-2148633301.jpg",
|
||||
imageAlt: "Programs",
|
||||
},
|
||||
title: "Age-Appropriate Programs", description: "Tailored activities for every developmental stage.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/little-kids-playing-together-kindergarten_23-2148633301.jpg", imageAlt: "Programs"},
|
||||
items: [
|
||||
{
|
||||
icon: Baby,
|
||||
text: "6 months to 6 years",
|
||||
},
|
||||
{
|
||||
icon: BookOpen,
|
||||
text: "Early literacy focus",
|
||||
},
|
||||
{
|
||||
icon: Palette,
|
||||
text: "Creative arts exploration",
|
||||
},
|
||||
{ icon: Baby, text: "6 months to 6 years" },
|
||||
{ icon: BookOpen, text: "Early literacy focus" },
|
||||
{ icon: Palette, text: "Creative arts exploration" },
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/excited-kids-sitting-grass-park-looking-away-together-watching-performance-animators-show-kids-party-friendship-concept_74855-11677.jpg?_wi=3",
|
||||
imageAlt: "preschool children playing outdoors",
|
||||
},
|
||||
]}
|
||||
title="Why Choose Smart Parrots?"
|
||||
@@ -214,21 +115,9 @@ export default function LandingPage() {
|
||||
tag="Our Experts"
|
||||
membersAnimation="slide-up"
|
||||
members={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Jane Doe",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mother-child-daughter-draws-creatively-home-table_1153-9656.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Mark Smith",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/children-playing-with-their-kindergarten-teacher_23-2148633345.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Emily White",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-children_23-2149110284.jpg?_wi=2",
|
||||
},
|
||||
{ id: "t1", name: "Jane Doe", imageSrc: "http://img.b2bpic.net/free-photo/mother-child-daughter-draws-creatively-home-table_1153-9656.jpg?_wi=2" },
|
||||
{ id: "t2", name: "Mark Smith", imageSrc: "http://img.b2bpic.net/free-photo/children-playing-with-their-kindergarten-teacher_23-2148633345.jpg?_wi=2" },
|
||||
{ id: "t3", name: "Emily White", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-children_23-2149110284.jpg?_wi=2" },
|
||||
]}
|
||||
memberVariant="card"
|
||||
/>
|
||||
@@ -240,20 +129,8 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "4",
|
||||
title: "Centers",
|
||||
description: "Across Dunoon",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/students-learning-school-their-classroom_23-2149511045.jpg",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "15+",
|
||||
title: "Years",
|
||||
description: "Of Excellence",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sweet-candies-pens_23-2147654407.jpg",
|
||||
},
|
||||
{ id: "m1", value: "4", title: "Centers", description: "Across Dunoon", imageSrc: "http://img.b2bpic.net/free-photo/students-learning-school-their-classroom_23-2149511045.jpg" },
|
||||
{ id: "m2", value: "15+", title: "Years", description: "Of Excellence", imageSrc: "http://img.b2bpic.net/free-photo/sweet-candies-pens_23-2147654407.jpg" },
|
||||
]}
|
||||
title="Our Impact in Numbers"
|
||||
description="Growing strong through numbers and community."
|
||||
@@ -264,62 +141,13 @@ export default function LandingPage() {
|
||||
<TestimonialCardFive
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
description="Real feedback from our happy families."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah",
|
||||
date: "Jan 2025",
|
||||
title: "Happy Parent",
|
||||
quote: "Love the center!",
|
||||
tag: "Parent",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/vertical-shot-happy-father-holding-hands-his-daughter_181624-40023.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/excited-kids-sitting-grass-park-looking-away-together-watching-performance-animators-show-kids-party-friendship-concept_74855-11677.jpg?_wi=4",
|
||||
imageAlt: "happy parent with child preschool",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "John",
|
||||
date: "Feb 2025",
|
||||
title: "Grateful",
|
||||
quote: "My kids thrive here.",
|
||||
tag: "Parent",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/baby-doing-his-first-steps_23-2149235230.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/little-girl-sitting-table-with-toys_23-2147663559.jpg?_wi=3",
|
||||
imageAlt: "happy parent with child preschool",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Mary",
|
||||
date: "Mar 2025",
|
||||
title: "Excellent",
|
||||
quote: "Wonderful staff.",
|
||||
tag: "Parent",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/side-view-parents-kid-home_23-2150171986.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mother-child-daughter-draws-creatively-home-table_1153-9656.jpg?_wi=3",
|
||||
imageAlt: "happy parent with child preschool",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David",
|
||||
date: "Apr 2025",
|
||||
title: "Trust",
|
||||
quote: "Best environment.",
|
||||
tag: "Parent",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/family-childcare-learning-development-fine-motor-skills-concept-caring-young-hispanic-woman-drinking-coffee-kitchen-while-handsome-baby-son-sitting-her-playing-with-toy-railway_344912-1933.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/children-playing-with-their-kindergarten-teacher_23-2148633345.jpg?_wi=3",
|
||||
imageAlt: "happy parent with child preschool",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Lisa",
|
||||
date: "May 2025",
|
||||
title: "Love it",
|
||||
quote: "Fantastic learning.",
|
||||
tag: "Parent",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/mom-spending-time-with-her-kids_23-2149495927.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-children_23-2149110284.jpg?_wi=3",
|
||||
imageAlt: "happy parent with child preschool",
|
||||
},
|
||||
{ id: "1", name: "Sarah", date: "Jan 2025", title: "Happy Parent", quote: "Love the center!", tag: "Parent", avatarSrc: "http://img.b2bpic.net/free-photo/vertical-shot-happy-father-holding-hands-his-daughter_181624-40023.jpg", imageSrc: "http://img.b2bpic.net/free-photo/excited-kids-sitting-grass-park-looking-away-together-watching-performance-animators-show-kids-party-friendship-concept_74855-11677.jpg?_wi=3", imageAlt: "happy parent with child preschool" },
|
||||
{ id: "2", name: "John", date: "Feb 2025", title: "Grateful", quote: "My kids thrive here.", tag: "Parent", avatarSrc: "http://img.b2bpic.net/free-photo/baby-doing-his-first-steps_23-2149235230.jpg", imageSrc: "http://img.b2bpic.net/free-photo/little-girl-sitting-table-with-toys_23-2147663559.jpg?_wi=3", imageAlt: "happy parent with child preschool" },
|
||||
{ id: "3", name: "Mary", date: "Mar 2025", title: "Excellent", quote: "Wonderful staff.", tag: "Parent", avatarSrc: "http://img.b2bpic.net/free-photo/side-view-parents-kid-home_23-2150171986.jpg", imageSrc: "http://img.b2bpic.net/free-photo/mother-child-daughter-draws-creatively-home-table_1153-9656.jpg?_wi=3", imageAlt: "happy parent with child preschool" },
|
||||
{ id: "4", name: "David", date: "Apr 2025", title: "Trust", quote: "Best environment.", tag: "Parent", avatarSrc: "http://img.b2bpic.net/free-photo/family-childcare-learning-development-fine-motor-skills-concept-caring-young-hispanic-woman-drinking-coffee-kitchen-while-handsome-baby-son-sitting-her-playing-with-toy-railway_344912-1933.jpg", imageSrc: "http://img.b2bpic.net/free-photo/children-playing-with-their-kindergarten-teacher_23-2148633345.jpg?_wi=3", imageAlt: "happy parent with child preschool" },
|
||||
{ id: "5", name: "Lisa", date: "May 2025", title: "Love it", quote: "Fantastic learning.", tag: "Parent", avatarSrc: "http://img.b2bpic.net/free-photo/mom-spending-time-with-her-kids_23-2149495927.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-children_23-2149110284.jpg?_wi=3", imageAlt: "happy parent with child preschool" },
|
||||
]}
|
||||
title="What Families Say"
|
||||
/>
|
||||
@@ -330,21 +158,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "What ages do you cater for?",
|
||||
content: "We care for children aged 6 months to 6 years.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Do you have multiple locations?",
|
||||
content: "Yes, we have 4 centers located in and around Dunoon.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "How do I enroll?",
|
||||
content: "You can contact us through our website to book a tour and start the enrollment process.",
|
||||
},
|
||||
{ id: "f1", title: "What ages do you cater for?", content: "We care for children aged 6 months to 6 years." },
|
||||
{ id: "f2", title: "Do you have multiple locations?", content: "Yes, we have 4 centers located in and around Dunoon." },
|
||||
{ id: "f3", title: "How do I enroll?", content: "You can contact us through our website to book a tour and start the enrollment process." },
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -355,16 +171,9 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
text="Ready to join the Smart Parrots family? Book a tour at any of our 4 centers today."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "mailto:info@smartparrots.com",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Contact Us", href: "mailto:info@smartparrots.com" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user