Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e040191105 | |||
| d4242324b2 | |||
| 5facc3a6b9 | |||
| b5d5dad059 | |||
| f93efcf677 |
232
src/app/page.tsx
232
src/app/page.tsx
@@ -12,7 +12,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
import { Award, BookOpen, CheckCircle, Star, Trophy, Users } from "lucide-react";
|
||||
import { Award, BookOpen, CheckCircle, Star, Trophy, Users, MapPin } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -33,31 +33,19 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Academics",
|
||||
id: "features",
|
||||
},
|
||||
name: "Academics", id: "features"},
|
||||
{
|
||||
name: "Team",
|
||||
id: "team",
|
||||
},
|
||||
name: "Team", id: "team"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Lord Buddha International School"
|
||||
button={{
|
||||
text: "Admissions",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Admissions", href: "#contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -67,35 +55,13 @@ export default function LandingPage() {
|
||||
description="Nurturing excellence, wisdom, and character at Lord Buddha International School."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Admissions",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Explore Admissions", href: "#contact"},
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-young-blonde-lady-walking-outdoors-looking-aside_171337-19431.jpg",
|
||||
imageAlt: "Campus",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-young-blonde-lady-walking-outdoors-looking-aside_171337-19431.jpg", imageAlt: "Campus"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-young-students-attending-school_23-2150911491.jpg",
|
||||
imageAlt: "Classroom",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-taking-selfie-work_23-2149366490.jpg",
|
||||
imageAlt: "Library",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-kids-playing-tag-game_23-2149073591.jpg",
|
||||
imageAlt: "Playground",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-kids-elementary-school_53876-138146.jpg",
|
||||
imageAlt: "Science Lab",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-artist-painting-indoors_23-2147989700.jpg",
|
||||
imageAlt: "Art Room",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-young-students-attending-school_23-2150911491.jpg", imageAlt: "Classroom"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -107,19 +73,13 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{
|
||||
icon: Users,
|
||||
label: "Students Enrolled",
|
||||
value: "1200+",
|
||||
},
|
||||
label: "Students Enrolled", value: "1200+"},
|
||||
{
|
||||
icon: Award,
|
||||
label: "Years Experience",
|
||||
value: "15+",
|
||||
},
|
||||
label: "Years Experience", value: "15+"},
|
||||
{
|
||||
icon: BookOpen,
|
||||
label: "Qualified Faculty",
|
||||
value: "85+",
|
||||
},
|
||||
icon: MapPin,
|
||||
label: "Located in", value: "Gurua"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -132,26 +92,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Advanced Science Labs",
|
||||
subtitle: "Hands-on learning",
|
||||
category: "Science",
|
||||
value: "STEM Focus",
|
||||
},
|
||||
id: "1", title: "Advanced Science Labs", subtitle: "Hands-on learning", category: "Science", value: "STEM Focus"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Modern Library",
|
||||
subtitle: "Rich collection",
|
||||
category: "Academics",
|
||||
value: "Research",
|
||||
},
|
||||
id: "2", title: "Modern Library", subtitle: "Rich collection", category: "Academics", value: "Research"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Sports Complex",
|
||||
subtitle: "Physical growth",
|
||||
category: "Athletics",
|
||||
value: "Active",
|
||||
},
|
||||
id: "3", title: "Sports Complex", subtitle: "Physical growth", category: "Athletics", value: "Active"},
|
||||
]}
|
||||
title="Holistic Academic Programs"
|
||||
description="Comprehensive development through state-of-the-art facilities and curriculum."
|
||||
@@ -166,25 +111,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "98%",
|
||||
title: "Pass Rate",
|
||||
description: "Consistently high results.",
|
||||
icon: CheckCircle,
|
||||
id: "1", value: "98%", title: "Pass Rate", description: "Consistently high results.", icon: CheckCircle,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "20",
|
||||
title: "Activities",
|
||||
description: "Diverse talent growth.",
|
||||
icon: Star,
|
||||
id: "2", value: "20", title: "Activities", description: "Diverse talent growth.", icon: Star,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "5+",
|
||||
title: "Awards",
|
||||
description: "Excellence in schooling.",
|
||||
icon: Trophy,
|
||||
id: "3", value: "5+", title: "Awards", description: "Excellence in schooling.", icon: Trophy,
|
||||
},
|
||||
]}
|
||||
title="Excellence in Numbers"
|
||||
@@ -199,23 +132,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
team={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Dr. Anjali Sharma",
|
||||
role: "Principal",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-senior-woman_23-2149178449.jpg",
|
||||
},
|
||||
id: "1", name: "Dr. Anjali Sharma", role: "Principal", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-senior-woman_23-2149178449.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Mr. Vikram Singh",
|
||||
role: "Science Head",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girls-learning-about-chemistry-class_23-2148571351.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Ms. Priya Devi",
|
||||
role: "Athletic Director",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-fit-friends-outdoors_23-2150828898.jpg",
|
||||
},
|
||||
id: "2", name: "Dr. Anand Kumar", role: "Principal", imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-man-having-creativity-office_23-2149384351.jpg"},
|
||||
]}
|
||||
title="Our Dedicated Educators"
|
||||
description="Empowering minds through compassion and expertise."
|
||||
@@ -229,62 +148,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Rahul Kumar",
|
||||
role: "Parent",
|
||||
company: "Local Business Owner",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenagers-friends-having-fun-together_23-2149280914.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Sita Devi",
|
||||
role: "Parent",
|
||||
company: "Social Worker",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adolescent-girl-practices-drawing-help-with-behavioral-therapy_482257-124854.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Amit Singh",
|
||||
role: "Parent",
|
||||
company: "Corporate Employee",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-mother-daughter-embracing-each-other-living-r_1170-2680.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Jyoti Mishra",
|
||||
role: "Parent",
|
||||
company: "Doctor",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-with-teenager-looking-map_1398-2783.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Vijay Pandey",
|
||||
role: "Parent",
|
||||
company: "Banker",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/nomad-family-traveling-nature_23-2149651504.jpg",
|
||||
},
|
||||
id: "1", name: "Rahul Kumar", role: "Parent", company: "Local Business Owner", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenagers-friends-having-fun-together_23-2149280914.jpg"},
|
||||
]}
|
||||
kpiItems={[
|
||||
{
|
||||
value: "4.9/5",
|
||||
label: "Parent Rating",
|
||||
},
|
||||
{
|
||||
value: "95%",
|
||||
label: "Recommendation Rate",
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
label: "Safety Standard",
|
||||
},
|
||||
{ value: "4.9/5", label: "Parent Rating" },
|
||||
{ value: "95%", label: "Recommendation" },
|
||||
{ value: "100%", label: "Safety" },
|
||||
]}
|
||||
title="Voices of Our Community"
|
||||
description="What our proud parents and students say about the LBIS difference."
|
||||
description="What our proud parents say about the LBIS difference."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -293,20 +166,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "How to apply?",
|
||||
content: "Admissions are open year-round via our portal.",
|
||||
},
|
||||
id: "1", title: "Where are you located?", content: "We are located in Gurua. You can find our exact location here: https://maps.app.goo.gl/YourMapLink"},
|
||||
{
|
||||
id: "2",
|
||||
title: "What is the student ratio?",
|
||||
content: "We maintain a 25:1 student-teacher ratio.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Do you offer transport?",
|
||||
content: "Yes, extensive bus coverage across Gurua.",
|
||||
},
|
||||
id: "2", title: "How to apply?", content: "Admissions are open year-round via our portal."},
|
||||
]}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
sideDescription="Need more information? We're here to help."
|
||||
@@ -317,42 +179,18 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contact Us"
|
||||
title="Start Your Child's Journey"
|
||||
description="Get in touch today to schedule a campus tour or learn more about admissions."
|
||||
description="Get in touch today to schedule a campus tour or learn more about our Gurua campus."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Admissions",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Academics",
|
||||
href: "#features",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Admissions", href: "#contact" }, { label: "Academics", href: "#features" }] },
|
||||
{ items: [{ label: "About Us", href: "#about" }, { label: "Contact", href: "#contact" }] },
|
||||
]}
|
||||
logoText="LBIS Gurua"
|
||||
/>
|
||||
@@ -360,4 +198,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user