4 Commits

Author SHA1 Message Date
bd90de254f Update theme colors 2026-04-15 09:44:03 +00:00
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
3 changed files with 79 additions and 10 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: "#"},
],

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5faff;
--card: #f1f8ff;
--foreground: #001122;
--primary-cta: #15479c;
--primary-cta-text: #f5faff;
--secondary-cta: #ffffff;
--secondary-cta-text: #001122;
--accent: #a8cce8;
--background-accent: #7ba3cf;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #120006e6;
--primary-cta: #e63946;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #120006e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);