Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-05-11 11:52:06 +00:00

View File

@@ -3,14 +3,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TextAbout from '@/components/sections/about/TextAbout';
import { BookOpen, Users, CheckCircle, GraduationCap } from "lucide-react";
@@ -29,86 +25,84 @@ export default function LandingPage() {
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Academics", id: "features" },
{ name: "Contact", id: "contact" },
]}
brandName="Kiran School"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Academics", id: "features" },
{ name: "Contact", id: "contact" },
]}
brandName="Kiran School"
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlay
title="Inspiring Futures at Kiran School"
description="A nurturing educational environment dedicated to empowering the leaders of tomorrow through academic excellence and values-driven learning."
imageSrc="http://img.b2bpic.net/free-photo/diverse-group-students-sitting-classroom_23-2148560127.jpg"
showBlur={true}
avatarText="Empowering 500+ students"
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlay
title="Inspiring Futures at Kiran School"
description="A nurturing educational environment dedicated to empowering the leaders of tomorrow through academic excellence and values-driven learning."
imageSrc="http://img.b2bpic.net/free-photo/diverse-group-students-sitting-classroom_23-2148560127.jpg"
showBlur={true}
avatarText="Empowering 500+ students"
/>
</div>
<div id="about" data-section="about">
<TextAbout
useInvertedBackground={false}
title="Building Foundations for Life"
tag="Our Mission"
tagIcon={GraduationCap}
className="pb-12"
>
<p className="text-lg text-muted-foreground">At Kiran School, we believe that education extends far beyond the textbook. Our unique pedagogical approach integrates inquiry-based learning with a strong emphasis on emotional intelligence and collaborative problem-solving, ensuring every student discovers their passion while developing the character needed to thrive in an evolving global landscape.</p>
</TextAbout>
</div>
<div id="about" data-section="about">
<TextAbout
useInvertedBackground={false}
title="Building Foundations for Life"
tag="Our Mission"
tagIcon={GraduationCap}
className="pb-12"
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwentySix
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Holistic Curriculum", description: "Balanced approach to core academics, arts, and character development.", buttonIcon: BookOpen,
},
{
title: "Expert Faculty", description: "Passionate educators committed to individualized student growth.", buttonIcon: Users,
},
{
title: "Modern Facilities", description: "Safe, innovative spaces designed to spark curiosity and creativity.", buttonIcon: CheckCircle,
},
{
title: "Community Spirit", description: "Building lifelong friendships in a supportive, inclusive environment.", buttonIcon: GraduationCap,
},
]}
title="What Makes Kiran School Unique?"
description="We combine traditional values with modern teaching techniques to prepare students for a rapidly changing world."
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwentySix
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Holistic Curriculum", description: "Balanced approach to core academics, arts, and character development.", buttonIcon: BookOpen,
},
{
title: "Expert Faculty", description: "Passionate educators committed to individualized student growth.", buttonIcon: Users,
},
{
title: "Modern Facilities", description: "Safe, innovative spaces designed to spark curiosity and creativity.", buttonIcon: CheckCircle,
},
{
title: "Community Spirit", description: "Building lifelong friendships in a supportive, inclusive environment.", buttonIcon: GraduationCap,
},
]}
title="What Makes Kiran School Unique?"
description="We combine traditional values with modern teaching techniques to prepare students for a rapidly changing world."
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Admissions"
title="Join Our Family"
description="Begin your journey with Kiran School. We are accepting applications for the upcoming academic year."
buttons={[
{ text: "Schedule a Visit", href: "#" },
{ text: "Apply Now", href: "#" }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Admissions"
title="Join Our Family"
description="Begin your journey with Kiran School. We are accepting applications for the upcoming academic year."
buttons={[
{ text: "Schedule a Visit", href: "#" },
{ text: "Apply Now", href: "#" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "#hero" }, { label: "About", href: "#about" }] },
{ items: [{ label: "Academics", href: "#features" }, { label: "Admissions", href: "#contact" }] },
]}
logoText="Kiran School"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "#hero" }, { label: "About", href: "#about" }] },
{ items: [{ label: "Academics", href: "#features" }, { label: "Admissions", href: "#contact" }] },
]}
logoText="Kiran School"
/>
</div>
</ReactLenis>
</ThemeProvider>
);