Files
5f25d8a2-8c90-4e52-ac4a-7e9…/src/app/programs/page.tsx
2026-04-21 12:52:36 +00:00

39 lines
1.5 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function ProgramsPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Academics", id: "/academics" },
{ name: "Programs", id: "/programs" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="SJHN"
/>
<div className="pt-32">
<FeatureCardTwelve
title="Extracurricular Activities & Clubs"
description="Beyond the classroom, we foster personal growth through various clubs and activities."
textboxLayout="split"
animationType="slide-up"
features={[
{ id: "c1", label: "Sports", title: "Athletics", items: ["Netball", "Football", "Swimming", "Basketball"] },
{ id: "c2", label: "Clubs", title: "Leadership & Arts", items: ["Debating Club", "Drama Society", "Science Club", "Young Farmers"] },
]}
/>
</div>
<FooterBaseReveal
logoText="SJHN"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
/>
</ThemeProvider>
);
}