137 lines
5.3 KiB
TypeScript
137 lines
5.3 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
|
import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
|
|
import TextAbout from "@/components/sections/about/TextAbout";
|
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
|
import Link from "next/link";
|
|
import { BookOpen, Award } from "lucide-react";
|
|
|
|
export default function AcademicsPage() {
|
|
const navItems = [
|
|
{ name: "About", id: "about" },
|
|
{ name: "Academics", id: "academics" },
|
|
{ name: "Facilities", id: "facilities" },
|
|
{ name: "Admissions", id: "admissions" },
|
|
{ name: "Contact", id: "contact" },
|
|
];
|
|
|
|
const footerColumns = [
|
|
{
|
|
title: "Quick Links",
|
|
items: [
|
|
{ label: "Home", href: "/" },
|
|
{ label: "About Us", href: "/about" },
|
|
{ label: "Academics", href: "/academics" },
|
|
{ label: "Facilities", href: "/facilities" },
|
|
{ label: "Admissions", href: "/admissions" },
|
|
],
|
|
},
|
|
{
|
|
title: "Contact Info",
|
|
items: [
|
|
{ label: "📞 Phone: +91-9876543210", href: "tel:+919876543210" },
|
|
{ label: "📍 Village Tihara, Bawal", href: "#" },
|
|
{ label: "📧 info@crschool.com", href: "mailto:info@crschool.com" },
|
|
{ label: "🕐 Mon-Fri: 8AM-4PM", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Resources",
|
|
items: [
|
|
{ label: "Admission Form", href: "/admissions" },
|
|
{ label: "School Calendar", href: "#" },
|
|
{ label: "Fee Structure", href: "#" },
|
|
{ label: "Privacy Policy", href: "#" },
|
|
],
|
|
},
|
|
];
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="shift-hover"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="smallMedium"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="aurora"
|
|
cardStyle="layered-gradient"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleCentered
|
|
navItems={navItems}
|
|
button={{ text: "Call Now", href: "tel:+919876543210" }}
|
|
brandName="CR International School"
|
|
/>
|
|
</div>
|
|
|
|
<div id="academics-curriculum" data-section="academics-curriculum">
|
|
<FeatureCardSix
|
|
features={[
|
|
{
|
|
id: 1,
|
|
title: "English Medium Curriculum",
|
|
description: "Comprehensive English medium curriculum aligned with international standards, focusing on conceptual clarity and skill development across all subjects.",
|
|
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-flat-teachers-day-landing-page-template_23-2149059088.jpg?_wi=2",
|
|
imageAlt: "English Medium Curriculum",
|
|
},
|
|
{
|
|
id: 2,
|
|
title: "Subject Specialization",
|
|
description: "Expert teachers in Mathematics, Science, English, and Social Studies provide specialized instruction with modern pedagogical approaches and continuous assessment.",
|
|
imageSrc: "http://img.b2bpic.net/free-vector/flat-cruelty-free-badge-pack_23-2148823800.jpg?_wi=2",
|
|
imageAlt: "Subject Specialization",
|
|
},
|
|
{
|
|
id: 3,
|
|
title: "Holistic Development",
|
|
description: "Beyond academics, we emphasize sports, arts, music, and co-curricular activities to develop well-rounded personalities and life skills.",
|
|
imageSrc: "http://img.b2bpic.net/free-vector/collection-colorful-banners-online-learning_23-2147597900.jpg?_wi=2",
|
|
imageAlt: "Holistic Development",
|
|
},
|
|
{
|
|
id: 4,
|
|
title: "Regular Assessments",
|
|
description: "Continuous evaluation through formative and summative assessments, coupled with detailed feedback and progress reports to parents.",
|
|
imageSrc: "http://img.b2bpic.net/free-vector/award-icons-set-colored_98292-6012.jpg?_wi=2",
|
|
imageAlt: "Regular Assessments",
|
|
},
|
|
]}
|
|
title="Our Academic Program"
|
|
description="A comprehensive educational framework designed to foster intellectual growth, critical thinking, and personal excellence."
|
|
tag="Academic Excellence"
|
|
tagIcon={Award}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="academics-cta" data-section="academics-cta">
|
|
<TextAbout
|
|
tag="Enrollment Open"
|
|
tagIcon={BookOpen}
|
|
tagAnimation="slide-up"
|
|
title="Invest in Your Child's Future with World-Class Education at CR International School."
|
|
useInvertedBackground={true}
|
|
buttons={[
|
|
{ text: "📞 Call for Details", href: "tel:+919876543210" },
|
|
{ text: "📝 Request Brochure", href: "/admissions" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseReveal
|
|
columns={footerColumns}
|
|
copyrightText="© 2025 CR International School Tihara. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |