Update src/app/subjects/page.tsx

This commit is contained in:
2026-04-04 06:37:34 +00:00
parent de3621f8ec
commit f3ccfc4306

View File

@@ -2,21 +2,24 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterCard from '@/components/sections/footer/FooterCard';
export default function SubjectsPage() {
return (
<ThemeProvider>
<NavbarStyleApple
navItems={[{name: "Subjects", id: "/subjects"}, {name: "Units", id: "/units"}, {name: "Practice", id: "/practice"}, {name: "Progress", id: "/progress"}]}
brandName="ExamGenius"
/>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[{name: "Subjects", id: "/subjects"}, {name: "Units", id: "/units"}, {name: "Practice", id: "/practice"}, {name: "Progress", id: "/progress"}]}
brandName="ExamGenius"
/>
</div>
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-8">Select Your Subject</h1>
<p className="text-lg mb-12">Choose the subject you want to prepare for.</p>
</div>
<FooterCard logoText="ExamGenius" />
<div id="footer" data-section="footer">
<FooterCard logoText="ExamGenius" />
</div>
</ThemeProvider>
);
}