283 lines
11 KiB
TypeScript
283 lines
11 KiB
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
|
|
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
|
|
import ContactText from "@/components/sections/contact/ContactText";
|
|
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
|
import { Building2, BookOpen, Beaker, Monitor, Wind, Bus, Layers, MapPin } from "lucide-react";
|
|
|
|
export default function HomePage() {
|
|
const navItems = [
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Vijay Bharati", id: "/vijay-bharati" },
|
|
{ name: "Akshara Concept", id: "/akshara-concept" },
|
|
{ name: "Contact", id: "#footer" },
|
|
];
|
|
|
|
const footerColumns = [
|
|
{
|
|
items: [
|
|
{ label: "Vijay Bharati School", href: "/vijay-bharati" },
|
|
{ label: "Akshara Concept School", href: "/akshara-concept" },
|
|
{ label: "Admissions", href: "/admissions" },
|
|
],
|
|
},
|
|
{
|
|
items: [
|
|
{ label: "Location", href: "#" },
|
|
{ label: "About Us", href: "#" },
|
|
{ label: "Contact", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms & Conditions", href: "#" },
|
|
{ label: "Copyright Notice", href: "#" },
|
|
],
|
|
},
|
|
];
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="medium"
|
|
sizing="medium"
|
|
background="none"
|
|
cardStyle="solid"
|
|
primaryButtonStyle="shadow"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="Vishwam's Group"
|
|
navItems={navItems.map((item) =>
|
|
item.id.startsWith("/")
|
|
? { name: item.name, id: item.id }
|
|
: { name: item.name, id: item.id }
|
|
)}
|
|
button={{
|
|
text: "Admissions Open",
|
|
href: "/admissions",
|
|
}}
|
|
animateOnLoad={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroLogoBillboardSplit
|
|
logoText="Vishwam's Group of Schools"
|
|
description="Welcome to Vishwam's Group of Schools. Nurturing excellence in education across Gadwal, Telangana. Discover two premier institutions dedicated to academic achievement and holistic development."
|
|
background={{ variant: "plain" }}
|
|
buttons={[
|
|
{ text: "Explore Vijay Bharati", href: "/vijay-bharati" },
|
|
{ text: "Explore Akshara Concept", href: "/akshara-concept" },
|
|
]}
|
|
layoutOrder="default"
|
|
imageSrc="http://img.b2bpic.net/free-photo/people-posing-entrance-college_23-2147666467.jpg?_wi=1"
|
|
imageAlt="school building entrance group students"
|
|
frameStyle="card"
|
|
mediaAnimation="slide-up"
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="schools-showcase" data-section="schools-showcase">
|
|
<FeatureCardTwentyFive
|
|
title="Our Schools"
|
|
description="Two distinguished institutions committed to excellence in education"
|
|
features={[
|
|
{
|
|
title: "Vishwam's Vijay Bharati High School",
|
|
description:
|
|
"Premium education with AC campus facilities. Located at New Housing Board, Gadwal. Features bridge curriculum, AC computer lab, science lab, and modern amenities.",
|
|
icon: Building2,
|
|
mediaItems: [
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/full-shot-woman-playing-music_23-2149485652.jpg?_wi=1",
|
|
imageAlt: "Vijay Bharati Campus",
|
|
},
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/woman-writing-business-idea_23-2148898700.jpg?_wi=1",
|
|
imageAlt: "Modern Classroom",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Vishwam's Akshara Concept School",
|
|
description:
|
|
"Innovative education experience located in Bhimnagar, Gadwal district. Comprehensive curriculum with science lab, computer lab, and dedicated focus on conceptual learning.",
|
|
icon: BookOpen,
|
|
mediaItems: [
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-vector/back-school-landing-page-template_23-2148212823.jpg?_wi=1",
|
|
imageAlt: "Akshara Concept Campus",
|
|
},
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/portrait-graduate-woman-showing-winner-gesture-casual-clothes-uniform-looking-happy-front-view_176474-51110.jpg?_wi=1",
|
|
imageAlt: "Student Learning",
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
buttons={[{ text: "Learn More", href: "#" }]}
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureCardTwentyFive
|
|
title="School Features"
|
|
description="Comprehensive facilities and programs designed for student success"
|
|
tag="Facilities"
|
|
features={[
|
|
{
|
|
title: "Modern Science Labs",
|
|
description:
|
|
"State-of-the-art science laboratories equipped for hands-on learning and experimentation across all disciplines.",
|
|
icon: Beaker,
|
|
mediaItems: [
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/laboratory-supplies-medical-work_23-2149744718.jpg?_wi=1",
|
|
imageAlt: "Science Laboratory",
|
|
},
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-vector/flat-design-science-lab_23-2148488074.jpg?_wi=1",
|
|
imageAlt: "Lab Equipment",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Computer Labs",
|
|
description:
|
|
"Advanced computer facilities with internet connectivity and modern software for digital literacy and technology education.",
|
|
icon: Monitor,
|
|
mediaItems: [
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/couple-adult-students-doing-discussing-academic-research_74855-1586.jpg?_wi=1",
|
|
imageAlt: "Computer Lab",
|
|
},
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/children-having-technology-education-class_23-2149123761.jpg?_wi=1",
|
|
imageAlt: "Technology Training",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "AC Campus (Vijay Bharati)",
|
|
description:
|
|
"Premium climate-controlled facilities ensuring comfort and optimal learning environment year-round.",
|
|
icon: Wind,
|
|
mediaItems: [
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/school-scene-with-queer-teens_23-2150379415.jpg?_wi=1",
|
|
imageAlt: "AC Campus",
|
|
},
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/modern-interior-lobby-with-uncommon-furniture_1262-3576.jpg?_wi=1",
|
|
imageAlt: "Comfortable Learning Space",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Transportation Services",
|
|
description:
|
|
"Safe and reliable bus services connecting students from various parts of Gadwal to school.",
|
|
icon: Bus,
|
|
mediaItems: [
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/logistics-center-workers-managing-package-dispatch-large-brand-orders-are-processed-quickly_482257-132145.jpg?_wi=1",
|
|
imageAlt: "School Bus",
|
|
},
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/little-boy-with-face-mask-using-digital-tablet-while-traveling-by-bus_637285-11823.jpg?_wi=1",
|
|
imageAlt: "Transportation",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Bridge Curriculum (Vijay Bharati)",
|
|
description:
|
|
"Specialized bridge program connecting foundational concepts with advanced topics for comprehensive understanding.",
|
|
icon: Layers,
|
|
mediaItems: [
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/distance-education-concept-with-wooden-blocks-with-words-it-colorful-pencils-side-view_176474-10414.jpg?_wi=1",
|
|
imageAlt: "Curriculum Design",
|
|
},
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/closeup-shot-little-figurines-students-standing-textbooks-clock_181624-45921.jpg?_wi=1",
|
|
imageAlt: "Learning Structure",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Campus Rides & Facilities",
|
|
description:
|
|
"Campus transport and recreational facilities designed for student convenience and well-being.",
|
|
icon: MapPin,
|
|
mediaItems: [
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/unrecognizable-woman-sitting-stairs-with-book_23-2147864194.jpg?_wi=1",
|
|
imageAlt: "Campus Amenities",
|
|
},
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/man-woman-leaving-gym_1262-707.jpg?_wi=1",
|
|
imageAlt: "Recreation Area",
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="cta" data-section="cta">
|
|
<ContactText
|
|
text="Admissions are now open for 2026-2027. Join Vishwam's Group of Schools and experience education excellence."
|
|
animationType="entrance-slide"
|
|
buttons={[
|
|
{ text: "Apply Now", href: "/admissions" },
|
|
{ text: "Contact Us", href: "#footer" },
|
|
]}
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoEmphasis
|
|
logoText="Vishwam's"
|
|
columns={footerColumns}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |