Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dd2691c3d6 | |||
| b29416a9ed | |||
| 058937c299 | |||
| b2302d3d53 | |||
| b5213882cf |
279
src/app/page.tsx
279
src/app/page.tsx
@@ -2,10 +2,10 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||||
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
||||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
@@ -34,25 +34,15 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
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: "Team",
|
name: "Team", id: "team"},
|
||||||
id: "team",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Kidz Kollege"
|
brandName="Kidz Kollege"
|
||||||
/>
|
/>
|
||||||
@@ -61,67 +51,42 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroCentered
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Building bright futures through quality early childhood education."
|
title="Building bright futures through quality early childhood education."
|
||||||
description="Kidz Kollege Nursery School in Kampala provides a nurturing environment where learning begins with joy and confidence."
|
description="Kidz Kollege Nursery School in Kampala provides a nurturing environment where learning begins with joy and confidence."
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/close-up-little-girl-having-fun-birthday-party_1098-1319.jpg",
|
src: "http://img.b2bpic.net/free-photo/close-up-little-girl-having-fun-birthday-party_1098-1319.jpg", alt: "smiling toddler classroom"},
|
||||||
alt: "smiling toddler classroom",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/girl-sitting-studying_23-2147666589.jpg",
|
src: "http://img.b2bpic.net/free-photo/girl-sitting-studying_23-2147666589.jpg", alt: "little boy playing blocks"},
|
||||||
alt: "little boy playing blocks",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/little-smiling-girl-hugging-favorite-toys-while-sitting-table_1153-9458.jpg",
|
src: "http://img.b2bpic.net/free-photo/little-smiling-girl-hugging-favorite-toys-while-sitting-table_1153-9458.jpg", alt: "happy girl smiling nursery"},
|
||||||
alt: "happy girl smiling nursery",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/african-american-schoolboy-using-hands-sanitizer-classroom_637285-8706.jpg",
|
src: "http://img.b2bpic.net/free-photo/african-american-schoolboy-using-hands-sanitizer-classroom_637285-8706.jpg", alt: "young boy reading book"},
|
||||||
alt: "young boy reading book",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/little-boy-kitchen-helps-mom-cook-child-is-involved-cooking_1321-1375.jpg",
|
src: "http://img.b2bpic.net/free-photo/little-boy-kitchen-helps-mom-cook-child-is-involved-cooking_1321-1375.jpg", alt: "diverse group children nursery"},
|
||||||
alt: "diverse group children nursery",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Learn More",
|
text: "Learn More", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Call Us Now",
|
text: "Call Us Now", href: "tel:0761677146"},
|
||||||
href: "tel:0761677146",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Quality Care", icon: Heart,
|
||||||
text: "Quality Care",
|
|
||||||
icon: Heart,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Creative Play", icon: Palette,
|
||||||
text: "Creative Play",
|
|
||||||
icon: Palette,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Safe Space", icon: Shield,
|
||||||
text: "Safe Space",
|
|
||||||
icon: Shield,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Early Learning", icon: BookOpen,
|
||||||
text: "Early Learning",
|
|
||||||
icon: BookOpen,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Happy Kids", icon: Smile,
|
||||||
text: "Happy Kids",
|
|
||||||
icon: Smile,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -131,7 +96,7 @@ export default function LandingPage() {
|
|||||||
<TestimonialAboutCard
|
<TestimonialAboutCard
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
tag="About Our School"
|
tag="About Our School"
|
||||||
title="Where learning begins with joy and confidence."
|
title="Empowering Your Child’s Potential"
|
||||||
description="Kidz Kollege Nursery School is a trusted institution in Kampala, dedicated to nurturing young minds in a safe, friendly, and engaging environment."
|
description="Kidz Kollege Nursery School is a trusted institution in Kampala, dedicated to nurturing young minds in a safe, friendly, and engaging environment."
|
||||||
subdescription="We focus on holistic growth—academic, emotional, social, and physical—to prepare our children for a successful future."
|
subdescription="We focus on holistic growth—academic, emotional, social, and physical—to prepare our children for a successful future."
|
||||||
icon={GraduationCap}
|
icon={GraduationCap}
|
||||||
@@ -148,21 +113,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
negativeCard={{
|
negativeCard={{
|
||||||
items: [
|
items: [
|
||||||
"Limited capacity for small groups",
|
"Limited capacity for small groups", "Strict routine requirements", "Uniform attendance expected", "Age-appropriate assessment", "Regular parent feedback"],
|
||||||
"Strict routine requirements",
|
|
||||||
"Uniform attendance expected",
|
|
||||||
"Age-appropriate assessment",
|
|
||||||
"Regular parent feedback",
|
|
||||||
],
|
|
||||||
}}
|
}}
|
||||||
positiveCard={{
|
positiveCard={{
|
||||||
items: [
|
items: [
|
||||||
"Experienced & caring teachers",
|
"Experienced & caring teachers", "Secure, child-friendly environment", "Creative & interactive learning", "Holistic development programs", "Play-based curriculum"],
|
||||||
"Secure, child-friendly environment",
|
|
||||||
"Creative & interactive learning",
|
|
||||||
"Holistic development programs",
|
|
||||||
"Play-based curriculum",
|
|
||||||
],
|
|
||||||
}}
|
}}
|
||||||
title="Why Choose Kidz Kollege?"
|
title="Why Choose Kidz Kollege?"
|
||||||
description="We believe in a happy learning experience that fosters curiosity and growth in every child."
|
description="We believe in a happy learning experience that fosters curiosity and growth in every child."
|
||||||
@@ -176,31 +131,16 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", value: "5.0", title: "Satisfaction Rating", items: [
|
||||||
value: "5.0",
|
"Trusted by families", "High positive feedback"],
|
||||||
title: "Satisfaction Rating",
|
|
||||||
items: [
|
|
||||||
"Trusted by families",
|
|
||||||
"High positive feedback",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", value: "2900", title: "Location", items: [
|
||||||
value: "2900",
|
"Valley Road", "Kampala"],
|
||||||
title: "Location",
|
|
||||||
items: [
|
|
||||||
"Valley Road",
|
|
||||||
"Kampala",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", value: "6AM", title: "Opening Time", items: [
|
||||||
value: "6AM",
|
"Convenient schedule", "Open until 5 PM"],
|
||||||
title: "Opening Time",
|
|
||||||
items: [
|
|
||||||
"Convenient schedule",
|
|
||||||
"Open until 5 PM",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Quick Facts"
|
title="Quick Facts"
|
||||||
@@ -216,23 +156,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
members={[
|
members={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Teacher Jane", role: "Head Educator", imageSrc: "http://img.b2bpic.net/free-photo/world-book-day-blonde-girl-with-ponytails-pink-backpack-uniform_140725-161797.jpg"},
|
||||||
name: "Teacher Jane",
|
|
||||||
role: "Head Educator",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/world-book-day-blonde-girl-with-ponytails-pink-backpack-uniform_140725-161797.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "Teacher Mark", role: "Music Specialist", imageSrc: "http://img.b2bpic.net/free-photo/boy-playing-with-brain-teaser-toys_23-2149512010.jpg"},
|
||||||
name: "Teacher Mark",
|
|
||||||
role: "Music Specialist",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/boy-playing-with-brain-teaser-toys_23-2149512010.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Teacher Sarah", role: "Early Development Lead", imageSrc: "http://img.b2bpic.net/free-photo/little-girl-sitting-table-with-books_1157-33822.jpg"},
|
||||||
name: "Teacher Sarah",
|
|
||||||
role: "Early Development Lead",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/little-girl-sitting-table-with-books_1157-33822.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Caring Teachers"
|
title="Our Caring Teachers"
|
||||||
description="Meet the passionate team nurturing our young learners every day."
|
description="Meet the passionate team nurturing our young learners every day."
|
||||||
@@ -245,60 +173,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Parent Name", date: "2024", title: "Excellent Care", quote: "My child loves it here, the teachers are so supportive.", tag: "Parent", avatarSrc: "http://img.b2bpic.net/free-photo/lovely-little-girl-sitting-classroom_23-2147663537.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DdUxs1Mz8S6R0SWzqdTsdCjx00/uploaded-1778611766042-wqbudvh3.jpg", imageAlt: "smiling toddler classroom"},
|
||||||
name: "Parent Name",
|
|
||||||
date: "2024",
|
|
||||||
title: "Excellent Care",
|
|
||||||
quote: "My child loves it here, the teachers are so supportive.",
|
|
||||||
tag: "Parent",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/lovely-little-girl-sitting-classroom_23-2147663537.jpg",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DdUxs1Mz8S6R0SWzqdTsdCjx00/uploaded-1778611766042-wqbudvh3.jpg",
|
|
||||||
imageAlt: "smiling toddler classroom",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Parent Name", date: "2024", title: "Safe & Fun", quote: "The environment is extremely safe and engaging.", tag: "Parent", avatarSrc: "http://img.b2bpic.net/free-photo/elementary-students-receiving-support-from-tutor-working-homework_482257-118640.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DdUxs1Mz8S6R0SWzqdTsdCjx00/uploaded-1778611766042-4rs07iv6.jpg?_wi=2", imageAlt: "smiling toddler classroom"},
|
||||||
name: "Parent Name",
|
|
||||||
date: "2024",
|
|
||||||
title: "Safe & Fun",
|
|
||||||
quote: "The environment is extremely safe and engaging.",
|
|
||||||
tag: "Parent",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/elementary-students-receiving-support-from-tutor-working-homework_482257-118640.jpg",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DdUxs1Mz8S6R0SWzqdTsdCjx00/uploaded-1778611766042-4rs07iv6.jpg?_wi=2",
|
|
||||||
imageAlt: "smiling toddler classroom",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Parent Name", date: "2024", title: "Great Growth", quote: "Holistic growth is evident in my child's progress.", tag: "Parent", avatarSrc: "http://img.b2bpic.net/free-photo/childhood-innocent-concept-portrait-charming-cute-little-girl-with-gathered-fair-hair-big-beautiful-eyes-sitting-by-window-having-happy-facial-expression-smiling_343059-4413.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DdUxs1Mz8S6R0SWzqdTsdCjx00/uploaded-1778611766042-rh2fr8g2.jpg", imageAlt: "smiling toddler classroom"},
|
||||||
name: "Parent Name",
|
|
||||||
date: "2024",
|
|
||||||
title: "Great Growth",
|
|
||||||
quote: "Holistic growth is evident in my child's progress.",
|
|
||||||
tag: "Parent",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/childhood-innocent-concept-portrait-charming-cute-little-girl-with-gathered-fair-hair-big-beautiful-eyes-sitting-by-window-having-happy-facial-expression-smiling_343059-4413.jpg",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DdUxs1Mz8S6R0SWzqdTsdCjx00/uploaded-1778611766042-rh2fr8g2.jpg",
|
|
||||||
imageAlt: "smiling toddler classroom",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Parent Name", date: "2024", title: "Highly Recommended", quote: "The best decision for our family's early education.", tag: "Parent", avatarSrc: "http://img.b2bpic.net/free-photo/happy-kids-elementary-school_53876-46935.jpg", imageSrc: "http://img.b2bpic.net/free-photo/close-up-little-girl-having-fun-birthday-party_1098-1319.jpg", imageAlt: "smiling toddler classroom"},
|
||||||
name: "Parent Name",
|
|
||||||
date: "2024",
|
|
||||||
title: "Highly Recommended",
|
|
||||||
quote: "The best decision for our family's early education.",
|
|
||||||
tag: "Parent",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/happy-kids-elementary-school_53876-46935.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-little-girl-having-fun-birthday-party_1098-1319.jpg",
|
|
||||||
imageAlt: "smiling toddler classroom",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Parent Name", date: "2024", title: "Exceptional", quote: "Happy kids, happy parents. Incredible school.", tag: "Parent", avatarSrc: "http://img.b2bpic.net/free-photo/little-boy-kitchen-helps-mom-cook-child-is-involved-cooking_1321-1375.jpg", imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-studying_23-2147666589.jpg", imageAlt: "smiling toddler classroom"},
|
||||||
name: "Parent Name",
|
|
||||||
date: "2024",
|
|
||||||
title: "Exceptional",
|
|
||||||
quote: "Happy kids, happy parents. Incredible school.",
|
|
||||||
tag: "Parent",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/little-boy-kitchen-helps-mom-cook-child-is-involved-cooking_1321-1375.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-studying_23-2147666589.jpg",
|
|
||||||
imageAlt: "smiling toddler classroom",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Community Voices"
|
title="Community Voices"
|
||||||
description="What our wonderful families say about our nursery school."
|
description="What our wonderful families say about our nursery school."
|
||||||
@@ -310,92 +193,58 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"Kampala Schools Network",
|
"Kampala Schools Network", "Early Years Union", "Child Education Fund", "Local Partners", "Kampala Development Board", "Youth Foundation", "Nursery Association"]}
|
||||||
"Early Years Union",
|
|
||||||
"Child Education Fund",
|
|
||||||
"Local Partners",
|
|
||||||
"Kampala Development Board",
|
|
||||||
"Youth Foundation",
|
|
||||||
"Nursery Association",
|
|
||||||
]}
|
|
||||||
title="Our Trusted Partners"
|
title="Our Trusted Partners"
|
||||||
description="Proudly working with institutions committed to child development."
|
description="Proudly working with institutions committed to child development."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqSplitText
|
<FaqBase
|
||||||
|
title="Common Questions"
|
||||||
|
description="Find answers to frequently asked questions about our nursery school."
|
||||||
|
faqsAnimation="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "q1",
|
id: "q1", title: "What are the school hours?", content: "We open at 6:00 AM and close at 5:00 PM."},
|
||||||
title: "What are the school hours?",
|
|
||||||
content: "We open at 6:00 AM and close at 5:00 PM.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q2",
|
id: "q2", title: "What is the location?", content: "We are located at 2900 Valley Rd, Kampala."},
|
||||||
title: "What is the location?",
|
|
||||||
content: "We are located at 2900 Valley Rd, Kampala.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q3",
|
id: "q3", title: "How can I contact you?", content: "Call us directly at 0761 677146."},
|
||||||
title: "How can I contact you?",
|
|
||||||
content: "Call us directly at 0761 677146.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
sideTitle="Common Questions"
|
|
||||||
faqsAnimation="slide-up"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
title="Get in Touch"
|
||||||
background={{
|
description="Have questions or want to schedule a visit? Fill out the form below."
|
||||||
variant: "sparkles-gradient",
|
inputs={[
|
||||||
}}
|
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||||
text="Join our school community. Visit us at 2900 Valley Rd, Kampala, or reach out to us at 0761 677146."
|
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||||
buttons={[
|
|
||||||
{
|
|
||||||
text: "Call School",
|
|
||||||
href: "tel:0761677146",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
|
textarea={{ name: "message", placeholder: "Your message for us...", required: true }}
|
||||||
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseReveal
|
<FooterBase
|
||||||
logoText="Kidz Kollege"
|
logoText="Kidz Kollege"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Links",
|
title: "Links", items: [
|
||||||
items: [
|
{ label: "Home", href: "#hero" },
|
||||||
{
|
{ label: "About", href: "#about" },
|
||||||
label: "Home",
|
{ label: "Programs", href: "#features" },
|
||||||
href: "#hero",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "About",
|
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Programs",
|
|
||||||
href: "#features",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
{ label: "0761 677146", href: "tel:0761677146" },
|
||||||
{
|
{ label: "2900 Valley Rd, Kampala", href: "#" },
|
||||||
label: "0761 677146",
|
|
||||||
href: "tel:0761677146",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "2900 Valley Rd, Kampala",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -405,4 +254,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user