3 Commits

Author SHA1 Message Date
7fef5015bb Update src/app/page.tsx 2026-04-15 09:32:39 +00:00
96b5f930ba Add src/app/about/page.tsx 2026-04-15 09:32:39 +00:00
371e514efb Merge version_1 into main
Merge version_1 into main
2026-04-15 09:29:07 +00:00
2 changed files with 70 additions and 1 deletions

67
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,67 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="compact"
sizing="largeSmallSizeMediumTitles"
background="aurora"
cardStyle="soft-shadow"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Academics", id: "/academics" },
{ name: "Facilities", id: "/facilities" },
{ name: "Admissions", id: "/admissions" },
{ name: "Contact", id: "/contact" },
]}
brandName="Birla High School"
/>
</div>
<div id="about-hero" data-section="about">
<MetricSplitMediaAbout
useInvertedBackground={false}
title="Our Legacy"
description="Established in 1941, Birla High School has been a beacon of quality education, blending traditional values with forward-thinking academic excellence to shape global citizens."
metrics={[
{ value: "80+", title: "Expert Teachers" },
{ value: "1.5k+", title: "Alumni Network" },
{ value: "1941", title: "Year Established" }
]}
imageSrc="http://img.b2bpic.net/free-photo/school-building-with-students-walking_1167-2703.jpg"
imageAlt="Birla High School Campus"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Birla High School"
columns={[
{ title: "School", items: [{ label: "About Us", href: "/about" }, { label: "History", href: "#" }] },
{ title: "Admissions", items: [{ label: "Requirements", href: "#" }, { label: "Apply Online", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Use", href: "#" }] },
]}
copyrightText="© 2024 Birla High School. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -31,6 +31,8 @@ export default function LandingPage() {
navItems={[
{
name: "Home", id: "hero"},
{
name: "About", id: "/about"},
{
name: "Academics", id: "academics"},
{
@@ -208,7 +210,7 @@ export default function LandingPage() {
{
title: "School", items: [
{
label: "About Us", href: "#"},
label: "About Us", href: "/about"},
{
label: "History", href: "#"},
],