Add src/app/grade-11/page.tsx
This commit is contained in:
23
src/app/grade-11/page.tsx
Normal file
23
src/app/grade-11/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function Grade11Page() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarLayoutFloatingOverlay navItems={[{name: "Home", id: "/"}, {name: "Grade 9", id: "/grade-9"}, {name: "Grade 10", id: "/grade-10"}, {name: "Grade 11", id: "/grade-11"}, {name: "Grade 12", id: "/grade-12"}]} brandName="Crispy Cluck" />
|
||||
<div className="pt-32 pb-20 px-8">
|
||||
<FeatureCardSix
|
||||
title="Grade 11 Curriculum"
|
||||
textboxLayout="split"
|
||||
features={[
|
||||
{ title: "Calculus Prep", description: "Mastering limits, derivatives, and preparation for college-level math." },
|
||||
{ title: "Scientific Research", description: "Conducting independent lab research and environmental science case studies." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user