Update src/app/page.tsx

This commit is contained in:
2026-05-12 00:49:58 +00:00
parent 6ca5c77e24
commit 88802fa7fd

View File

@@ -55,6 +55,8 @@ export default function LandingPage() {
buttons={[ buttons={[
{ {
text: "Enroll Now", href: "/register"}, text: "Enroll Now", href: "/register"},
{
text: "View Curriculum", href: "/curriculum"},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/young-adult-wakes-up-black-student-university-library-after-falling-asleep_482257-123348.jpg" imageSrc="http://img.b2bpic.net/free-photo/young-adult-wakes-up-black-student-university-library-after-falling-asleep_482257-123348.jpg"
@@ -171,10 +173,6 @@ export default function LandingPage() {
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqSplitText <FaqSplitText
useInvertedBackground={true} useInvertedBackground={true}
buttons={[
{
text: "Contact Support", href: "/contact"},
]}
faqs={[ faqs={[
{ {
id: "f1", title: "How do I register?", content: "You can easily register from our website by clicking the 'Enroll Now' button and filling in your details."}, id: "f1", title: "How do I register?", content: "You can easily register from our website by clicking the 'Enroll Now' button and filling in your details."},
@@ -245,4 +243,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }