Add src/app/admissions/page.tsx

This commit is contained in:
2026-04-05 15:02:07 +00:00
parent bf48bf5905
commit 4201a80b8a

View File

@@ -0,0 +1,81 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
export default function AdmissionsPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="compact"
sizing="largeSizeMediumTitles"
background="fluid"
cardStyle="soft-shadow"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
{ name: "FAQ", id: "/#faq" },
{ name: "Admissions", id: "/admissions" },
{ name: "Contact", id: "/#contact" },
]}
brandName="EduManage"
/>
</div>
<div id="requirements" data-section="features">
<FeatureCardSeven
title="Admissions Requirements"
description="Ensure you have all the necessary documents and qualifications before applying."
textboxLayout="default"
animationType="blur-reveal"
features={[
{ title: "Academic Transcripts", description: "Official records of your previous academic performance." },
{ title: "Standardized Test Scores", description: "Required scores for international and domestic applicants." },
{ title: "Letters of Recommendation", description: "Two letters from academic or professional references." },
{ title: "Personal Statement", description: "A brief essay outlining your goals and motivation for joining." }
]}
/>
</div>
<div id="application" data-section="contact">
<ContactSplitForm
title="Submit Your Application"
description="Begin your journey with us by filling out the online application form below."
inputs={[
{ name: "fullName", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
{ name: "program", type: "text", placeholder: "Intended Program" }
]}
textarea={{ name: "statement", placeholder: "Why do you want to join?" }}
onSubmit={(data) => console.log(data)}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Features", href: "/#features" }, { label: "About", href: "/#about" }] },
{ items: [{ label: "Terms", href: "#" }, { label: "Privacy", href: "#" }] },
{ items: [{ label: "Support", href: "/#contact" }, { label: "FAQ", href: "/#faq" }] },
]}
logoText="EduManage"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}