Update src/app/page.tsx
This commit is contained in:
261
src/app/page.tsx
261
src/app/page.tsx
@@ -8,45 +8,44 @@ import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwent
|
||||
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Phone, MapPin, Award, BookOpen, Shield, Heart, Zap } from "lucide-react";
|
||||
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
||||
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||
import { Phone, MapPin, Award, BookOpen, Shield, Heart, Zap, Sparkles, CheckCircle } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Why Us", id: "features" },
|
||||
{ name: "Facilities", id: "about" },
|
||||
{ name: "Admissions", id: "pricing" },
|
||||
{ name: "Admissions", id: "admissions" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Campuses",
|
||||
items: [
|
||||
{ label: "Patel Nagar", href: "/about" },
|
||||
{ label: "Amberpet", href: "/about" },
|
||||
{ label: "Old Gandhi High School", href: "/about" },
|
||||
title: "Campuses", items: [
|
||||
{ label: "Patel Nagar", href: "#campuses" },
|
||||
{ label: "Amberpet", href: "#campuses" },
|
||||
{ label: "Old Gandhi High School", href: "#campuses" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Admissions", href: "/#pricing" },
|
||||
{ label: "Facilities", href: "/#features" },
|
||||
title: "Quick Links", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Admissions", href: "#admissions" },
|
||||
{ label: "Facilities", href: "#features" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Patel Nagar: 098483 47621", href: "tel:+919848347621" },
|
||||
{ label: "Amberpet: 098483 47616", href: "tel:+919848347616" },
|
||||
{ label: "Email Us", href: "mailto:admissions@gandhihighschool.edu" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{ label: "Prospectus", href: "#" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Career", href: "#" },
|
||||
@@ -61,7 +60,7 @@ export default function HomePage() {
|
||||
borderRadius="soft"
|
||||
contentWidth="small"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="noise"
|
||||
background="circleGradient"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="glass"
|
||||
@@ -76,7 +75,7 @@ export default function HomePage() {
|
||||
title="Quality Education for a Bright Future"
|
||||
description="Trusted by families in Patel Nagar and Amberpet for academic excellence, safe environment, and comprehensive student development."
|
||||
tag="Welcome to Gandhi High School"
|
||||
background={{ variant: "noise" }}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "tel:+919848347621" },
|
||||
{ text: "Enquire About Admissions", href: "#contact" },
|
||||
@@ -84,29 +83,19 @@ export default function HomePage() {
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/modern-building-with-multiple-large-windows_250224-148.jpg",
|
||||
imageAlt: "Students learning in modern classroom at Gandhi High School",
|
||||
},
|
||||
"http://img.b2bpic.net/free-photo/modern-building-with-multiple-large-windows_250224-148.jpg", imageAlt: "Students learning in modern classroom at Gandhi High School"},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-guy-orange-pullover-jeans-holding-bottle-water-hand-while-thoughtfully-looking-aside-skatepark_574295-3400.jpg?_wi=1",
|
||||
imageAlt: "Gandhi High School Patel Nagar Campus building exterior",
|
||||
},
|
||||
"http://img.b2bpic.net/free-photo/young-guy-orange-pullover-jeans-holding-bottle-water-hand-while-thoughtfully-looking-aside-skatepark_574295-3400.jpg", imageAlt: "Gandhi High School Patel Nagar Campus building exterior"},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/serious-young-blonde-lady-walking-outdoors-looking-aside_171337-19433.jpg?_wi=1",
|
||||
imageAlt: "Gandhi High School Amberpet Campus entrance",
|
||||
},
|
||||
"http://img.b2bpic.net/free-photo/serious-young-blonde-lady-walking-outdoors-looking-aside_171337-19433.jpg", imageAlt: "Gandhi High School Amberpet Campus entrance"},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/isometric-home-education-composition-with-kids-having-handicraft-online-lesson-computer_1284-63333.jpg?_wi=1",
|
||||
imageAlt: "Spacious bright classroom with modern educational setup",
|
||||
},
|
||||
"http://img.b2bpic.net/free-vector/isometric-home-education-composition-with-kids-having-handicraft-online-lesson-computer_1284-63333.jpg", imageAlt: "Spacious bright classroom with modern educational setup"},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-women-playing-football_23-2149044708.jpg?_wi=1",
|
||||
imageAlt: "Safe outdoor playground and recreational facilities",
|
||||
},
|
||||
"http://img.b2bpic.net/free-photo/young-women-playing-football_23-2149044708.jpg", imageAlt: "Safe outdoor playground and recreational facilities"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -117,35 +106,20 @@ export default function HomePage() {
|
||||
description="Visit our multiple locations across the city, each offering world-class facilities and dedicated faculty for your child's education."
|
||||
features={[
|
||||
{
|
||||
title: "Patel Nagar Campus",
|
||||
description:
|
||||
"Door No. 2-3-603/70 A & B, Patel Nagar. Phone: 098483 47621. Our flagship campus with state-of-the-art facilities.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-guy-orange-pullover-jeans-holding-bottle-water-hand-while-thoughtfully-looking-aside-skatepark_574295-3400.jpg?_wi=2",
|
||||
imageAlt: "Patel Nagar Campus",
|
||||
buttonIcon: Phone,
|
||||
buttonHref: "tel:+919848347621",
|
||||
},
|
||||
title: "Patel Nagar Campus", description:
|
||||
"Door No. 2-3-603/70 A & B, Patel Nagar. Phone: 098483 47621. Our flagship campus with state-of-the-art facilities.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-guy-orange-pullover-jeans-holding-bottle-water-hand-while-thoughtfully-looking-aside-skatepark_574295-3400.jpg", imageAlt: "Patel Nagar Campus", buttonIcon: Phone,
|
||||
buttonHref: "tel:+919848347621"},
|
||||
{
|
||||
title: "Amberpet Campus",
|
||||
description:
|
||||
"Venkat Reddy Nagar Rd, Amberpet. Phone: 098483 47616. Modern facility serving the eastern part of the city.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/serious-young-blonde-lady-walking-outdoors-looking-aside_171337-19433.jpg?_wi=2",
|
||||
imageAlt: "Amberpet Campus",
|
||||
buttonIcon: Phone,
|
||||
buttonHref: "tel:+919848347616",
|
||||
},
|
||||
title: "Amberpet Campus", description:
|
||||
"Venkat Reddy Nagar Rd, Amberpet. Phone: 098483 47616. Modern facility serving the eastern part of the city.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/serious-young-blonde-lady-walking-outdoors-looking-aside_171337-19433.jpg", imageAlt: "Amberpet Campus", buttonIcon: Phone,
|
||||
buttonHref: "tel:+919848347616"},
|
||||
{
|
||||
title: "Old Gandhi High School",
|
||||
description:
|
||||
"2-3-603/50/C/18/B/1, New Patel Nagar Rd. Our heritage campus with traditional excellence and modern pedagogy.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-guy-orange-pullover-jeans-holding-bottle-water-hand-while-thoughtfully-looking-aside-skatepark_574295-3400.jpg?_wi=3",
|
||||
imageAlt: "Old Gandhi High School Campus",
|
||||
buttonIcon: MapPin,
|
||||
buttonHref: "#",
|
||||
},
|
||||
title: "Old Gandhi High School", description:
|
||||
"2-3-603/50/C/18/B/1, New Patel Nagar Rd. Our heritage campus with traditional excellence and modern pedagogy.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-guy-orange-pullover-jeans-holding-bottle-water-hand-while-thoughtfully-looking-aside-skatepark_574295-3400.jpg", imageAlt: "Old Gandhi High School Campus", buttonIcon: MapPin,
|
||||
buttonHref: "#"},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -161,55 +135,46 @@ export default function HomePage() {
|
||||
tag="Our Commitment"
|
||||
features={[
|
||||
{
|
||||
title: "Experienced Faculty",
|
||||
description:
|
||||
"Highly qualified teachers with years of expertise in shaping young minds and fostering academic excellence.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/isometric-home-education-composition-with-kids-having-handicraft-online-lesson-computer_1284-63333.jpg?_wi=2",
|
||||
imageAlt: "Experienced teaching faculty",
|
||||
buttonIcon: Award,
|
||||
title: "Experienced Faculty", description:
|
||||
"Highly qualified teachers with years of expertise in shaping young minds and fostering academic excellence.", imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/isometric-home-education-composition-with-kids-having-handicraft-online-lesson-computer_1284-63333.jpg", imageAlt: "Experienced teaching faculty", buttonIcon: Award,
|
||||
},
|
||||
{
|
||||
title: "Strong Academic Curriculum",
|
||||
description:
|
||||
"Comprehensive curriculum aligned with national standards, emphasizing both theoretical knowledge and practical application.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/woman-biochemist-checking-manifestations-virus-working-computer-equipped-lab-late-night_482257-489.jpg",
|
||||
imageAlt: "Science laboratory and academic resources",
|
||||
buttonIcon: BookOpen,
|
||||
title: "Strong Academic Curriculum", description:
|
||||
"Comprehensive curriculum aligned with national standards, emphasizing both theoretical knowledge and practical application.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/woman-biochemist-checking-manifestations-virus-working-computer-equipped-lab-late-night_482257-489.jpg", imageAlt: "Science laboratory and academic resources", buttonIcon: BookOpen,
|
||||
},
|
||||
{
|
||||
title: "Safe & Disciplined Environment",
|
||||
description:
|
||||
"Secure campus with strict discipline policies ensuring a safe, focused learning environment for all students.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-women-playing-football_23-2149044708.jpg?_wi=2",
|
||||
imageAlt: "Safe and secure campus",
|
||||
buttonIcon: Shield,
|
||||
title: "Safe & Disciplined Environment", description:
|
||||
"Secure campus with strict discipline policies ensuring a safe, focused learning environment for all students.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-women-playing-football_23-2149044708.jpg", imageAlt: "Safe and secure campus", buttonIcon: Shield,
|
||||
},
|
||||
{
|
||||
title: "Character Building Focus",
|
||||
description:
|
||||
"We believe in holistic development with special emphasis on building ethics, values, and leadership qualities.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/teenager-touching-books-bookshelf_23-2147864162.jpg",
|
||||
imageAlt: "Student development and learning",
|
||||
buttonIcon: Heart,
|
||||
title: "Character Building Focus", description:
|
||||
"We believe in holistic development with special emphasis on building ethics, values, and leadership qualities.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/teenager-touching-books-bookshelf_23-2147864162.jpg", imageAlt: "Student development and learning", buttonIcon: Heart,
|
||||
},
|
||||
{
|
||||
title: "Co-Curricular Activities",
|
||||
description:
|
||||
"Rich portfolio of activities including sports, arts, debates, and community service for well-rounded development.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/serious-mix-raced-students-working-computer-class_74855-1592.jpg",
|
||||
imageAlt: "Technology and activities",
|
||||
buttonIcon: Zap,
|
||||
title: "Co-Curricular Activities", description:
|
||||
"Rich portfolio of activities including sports, arts, debates, and community service for well-rounded development.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/serious-mix-raced-students-working-computer-class_74855-1592.jpg", imageAlt: "Technology and activities", buttonIcon: Zap,
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
tagAnimation="slide-up"
|
||||
buttonAnimation="blur-reveal"
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[{ type: "text", content: "World-Class Facilities for Comprehensive Learning" }]}
|
||||
buttons={[
|
||||
{ text: "Schedule a Campus Visit", href: "#contact" },
|
||||
{ text: "Download Prospectus", href: "#" },
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -220,25 +185,13 @@ export default function HomePage() {
|
||||
tag="Achievements"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "500+",
|
||||
description: "Students Successfully Graduated",
|
||||
},
|
||||
id: "1", value: "500+", description: "Students Successfully Graduated"},
|
||||
{
|
||||
id: "2",
|
||||
value: "95%",
|
||||
description: "Parent Satisfaction Rate",
|
||||
},
|
||||
id: "2", value: "95%", description: "Parent Satisfaction Rate"},
|
||||
{
|
||||
id: "3",
|
||||
value: "50+",
|
||||
description: "Experienced Faculty Members",
|
||||
},
|
||||
id: "3", value: "50+", description: "Experienced Faculty Members"},
|
||||
{
|
||||
id: "4",
|
||||
value: "3",
|
||||
description: "Campus Locations Across City",
|
||||
},
|
||||
id: "4", value: "3", description: "Campus Locations Across City"},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
textboxLayout="default"
|
||||
@@ -255,36 +208,82 @@ export default function HomePage() {
|
||||
author="Rajesh Kumar, Parent"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/businessman-with-arms-crossed-looking-camera_23-2148308625.jpg",
|
||||
alt: "Parent testimonial avatar 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/businessman-with-arms-crossed-looking-camera_23-2148308625.jpg", alt: "Parent testimonial avatar 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/annoyed-young-brunette-caucasian-girl-stands-with-crossed-arms-isolated-orange-wall-with-copy-space_141793-116421.jpg",
|
||||
alt: "Parent testimonial avatar 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/annoyed-young-brunette-caucasian-girl-stands-with-crossed-arms-isolated-orange-wall-with-copy-space_141793-116421.jpg", alt: "Parent testimonial avatar 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/executive-blue-suit-arms-crossed_1139-200.jpg",
|
||||
alt: "Parent testimonial avatar 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/executive-blue-suit-arms-crossed_1139-200.jpg", alt: "Parent testimonial avatar 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-bearded-man-busines-clothes-with-crossed-arms-looking-camera-gray_171337-11335.jpg",
|
||||
alt: "Parent testimonial avatar 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-bearded-man-busines-clothes-with-crossed-arms-looking-camera-gray_171337-11335.jpg", alt: "Parent testimonial avatar 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/closeup-portrait-cute-young-business-woman-smiling_93675-133169.jpg",
|
||||
alt: "Parent testimonial avatar 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/closeup-portrait-cute-young-business-woman-smiling_93675-133169.jpg", alt: "Parent testimonial avatar 5"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-young-smiling-woman-looking-camera_23-2148187139.jpg",
|
||||
alt: "Parent testimonial avatar 6",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-young-smiling-woman-looking-camera_23-2148187139.jpg", alt: "Parent testimonial avatar 6"},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="fade-in"
|
||||
avatarsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="admissions" data-section="admissions">
|
||||
<PricingCardEight
|
||||
title="Admissions Information"
|
||||
description="We welcome students from all backgrounds. Our admissions process is transparent, merit-based, and designed to identify passionate learners."
|
||||
tag="Admissions Open"
|
||||
plans={[
|
||||
{
|
||||
id: "primary", badge: "Classes I-V", badgeIcon: Sparkles,
|
||||
price: "Foundation", subtitle: "Primary education excellence", buttons: [{ text: "Apply Now", href: "#contact" }],
|
||||
features: [
|
||||
"Strong foundation in academics", "Language proficiency development", "Creative thinking encouragement", "Sports and arts integration", "Regular parent-teacher meetings"],
|
||||
},
|
||||
{
|
||||
id: "secondary", badge: "Classes VI-X", badgeIcon: CheckCircle,
|
||||
price: "Secondary", subtitle: "Comprehensive curriculum", buttons: [{ text: "Apply Now", href: "#contact" }],
|
||||
features: [
|
||||
"Advanced subject specialization", "Science and lab facilities", "English medium instruction", "Competitive exam preparation", "Leadership development programs"],
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactFaq
|
||||
ctaTitle="Schedule Your Campus Visit Today"
|
||||
ctaDescription="Connect with our admissions team to learn more about our programs and schedule a personalized tour of our facilities."
|
||||
ctaButton={{ text: "Call Patel Nagar - 098483 47621", href: "tel:+919848347621" }}
|
||||
ctaIcon={Phone}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What is the admission process?", content:
|
||||
"Our admission process includes submission of application form, entrance test for higher classes, counseling with parents, and merit-based selection. We consider both academic performance and overall personality of the child."},
|
||||
{
|
||||
id: "2", title: "What are the school timings?", content:
|
||||
"School operates from 8:00 AM to 2:30 PM for primary classes and 8:00 AM to 3:30 PM for secondary classes. Early drop-off and late pick-up facilities are available on request."},
|
||||
{
|
||||
id: "3", title: "Do you offer transportation?", content:
|
||||
"Yes, we provide safe and reliable transportation across multiple routes in Patel Nagar and Amberpet areas. Transportation fee is charged separately as per distance."},
|
||||
{
|
||||
id: "4", title: "What extracurricular activities are available?", content:
|
||||
"We offer sports (cricket, badminton, volleyball), arts (painting, music, dance), debate club, science club, and community service programs to develop well-rounded personalities."},
|
||||
{
|
||||
id: "5", title: "How can I contact the school?", content:
|
||||
"Patel Nagar Campus: 098483 47621 | Amberpet Campus: 098483 47616. You can also visit our campuses directly or fill the inquiry form on our website."},
|
||||
{
|
||||
id: "6", title: "What is your fee structure?", content:
|
||||
"Fee structure varies by class and campus. We offer transparent fee details during counseling. Scholarships are available for meritorious students and economically backward children."},
|
||||
]}
|
||||
useInvertedBackground={true}
|
||||
animationType="blur-reveal"
|
||||
accordionAnimationType="smooth"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Gandhi High School"
|
||||
|
||||
Reference in New Issue
Block a user