Merge version_1 into main #2
@@ -7,7 +7,7 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AdmissionsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
@@ -22,141 +22,73 @@ export default function LandingPage() {
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Admissions",
|
||||
id: "/admissions",
|
||||
},
|
||||
{
|
||||
name: "Facilities",
|
||||
id: "/facilities",
|
||||
},
|
||||
]}
|
||||
brandName="Christ School Rajkot"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Admissions", id: "/admissions" },
|
||||
{ name: "Facilities", id: "/facilities" },
|
||||
]}
|
||||
brandName="Christ School Rajkot"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="admissions-body" data-section="admissions-body">
|
||||
<FeatureCardTen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Inquiry",
|
||||
description: "Fill out the online inquiry form.",
|
||||
items: [],
|
||||
reverse: false,
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-people-working-with-gadgets_23-2147664147.jpg",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hercules-hall-surrounded-by-greenery-sunlight-daytime-munich-germany_181624-17876.jpg",
|
||||
imageAlt: "students in classroom",
|
||||
},
|
||||
{
|
||||
title: "Interaction",
|
||||
description: "Meet our admissions team for a discussion.",
|
||||
items: [],
|
||||
reverse: true,
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/children-drawing-together-classroom_23-2148925452.jpg?_wi=2",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-with-teenager-looking-map_1398-2783.jpg",
|
||||
imageAlt: "students in classroom",
|
||||
},
|
||||
{
|
||||
title: "Documentation",
|
||||
description: "Submit required documents.",
|
||||
items: [],
|
||||
reverse: false,
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/diverse-pupils-public-library-attending-video-conference-webinar-lesson_482257-118026.jpg",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-handsome-modern-man-wearing-glasses-denim-jacket-yellow-background-with-happy-face-standing-smiling-with-confident-smile-showing-teeth_839833-30354.jpg",
|
||||
imageAlt: "students in classroom",
|
||||
},
|
||||
{
|
||||
title: "Enrollment",
|
||||
description: "Finalize your child's enrollment.",
|
||||
items: [],
|
||||
reverse: true,
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/women-traveling-paris_23-2149305810.jpg",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-adopted-by-couple_23-2149574088.jpg",
|
||||
imageAlt: "students in classroom",
|
||||
},
|
||||
]}
|
||||
title="Admission Process"
|
||||
description="A simple four-step approach to welcome your child."
|
||||
/>
|
||||
</div>
|
||||
<div id="admissions-body" data-section="admissions-body">
|
||||
<FeatureCardTen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Admission Process"
|
||||
description="A simple four-step approach to welcome your child."
|
||||
features={[
|
||||
{
|
||||
title: "Inquiry", description: "Fill out the online inquiry form.", items: [],
|
||||
reverse: false,
|
||||
media: { imageSrc: "http://img.b2bpic.net/free-photo/hercules-hall-surrounded-by-greenery-sunlight-daytime-munich-germany_181624-17876.jpg", imageAlt: "students in classroom" }
|
||||
},
|
||||
{
|
||||
title: "Interaction", description: "Meet our admissions team for a discussion.", items: [],
|
||||
reverse: true,
|
||||
media: { imageSrc: "http://img.b2bpic.net/free-photo/couple-with-teenager-looking-map_1398-2783.jpg", imageAlt: "students in classroom" }
|
||||
},
|
||||
{
|
||||
title: "Documentation", description: "Submit required documents.", items: [],
|
||||
reverse: false,
|
||||
media: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-handsome-modern-man-wearing-glasses-denim-jacket-yellow-background-with-happy-face-standing-smiling-with-confident-smile-showing-teeth_839833-30354.jpg", imageAlt: "students in classroom" }
|
||||
},
|
||||
{
|
||||
title: "Enrollment", description: "Finalize your child's enrollment.", items: [],
|
||||
reverse: true,
|
||||
media: { imageSrc: "http://img.b2bpic.net/free-photo/young-girl-adopted-by-couple_23-2149574088.jpg", imageAlt: "students in classroom" }
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Admissions FAQ"
|
||||
description="Clear answers for prospective parents."
|
||||
faqs={[
|
||||
{
|
||||
id: "a1",
|
||||
title: "Age Eligibility",
|
||||
content: "Admission starts at age 4 for Kindergarten.",
|
||||
},
|
||||
{
|
||||
id: "a2",
|
||||
title: "Registration Fee",
|
||||
content: "The application fee is ₹500, payable online or at the office.",
|
||||
},
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Admissions FAQ"
|
||||
description="Clear answers for prospective parents."
|
||||
faqs={[
|
||||
{ id: "a1", title: "Age Eligibility", content: "Admission starts at age 4 for Kindergarten." },
|
||||
{ id: "a2", title: "Registration Fee", content: "The application fee is ₹500, payable online or at the office." },
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Christ School Rajkot"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Admissions",
|
||||
href: "/admissions",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Academic",
|
||||
items: [
|
||||
{
|
||||
label: "Academics",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Facilities",
|
||||
href: "/facilities",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Christ School Rajkot"
|
||||
columns={[
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Admissions", href: "/admissions" }] },
|
||||
{ title: "Academic", items: [{ label: "Academics", href: "#" }, { label: "Facilities", href: "/facilities" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user