Update src/app/page.tsx

This commit is contained in:
2026-03-31 12:28:20 +00:00
parent 5eecd3b4b6
commit 8d3edfc7b8

View File

@@ -29,12 +29,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Features", id: "features" },
{ name: "Metrics", id: "metrics" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Events", id: "/events" },
{ name: "Student Life", id: "/student-life" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
]}
brandName="CUT"
/>
@@ -100,45 +100,15 @@ export default function LandingPage() {
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{
id: "q1", title: "How do I apply?", content: "You can apply online via our admissions portal under the 'Apply' section."},
{
id: "q2", title: "What programs are available?", content: "We offer degrees in Engineering, Technology, Business, and Computer Science."},
{
id: "q3", title: "Is financial aid available?", content: "Yes, we offer various bursaries and government support schemes for qualifying students."},
]}
title="Frequently Asked Questions"
description="Find quick answers to common questions about admissions, research, and campus life."
faqsAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Newsletter"
title="Stay Informed"
description="Sign up for our newsletter for news about upcoming intakes, seminars, and technological breakthroughs at CUT."
imageSrc="http://img.b2bpic.net/free-vector/abstract-blue-background-with-dots_1152-206.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="CHINHOYI UNIVERSITY OF TECHNOLOGY"
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "#hero" },
{ label: "Admissions", href: "#" },
{ label: "Library", href: "#" },
{ label: "Home", href: "/" },
{ label: "Events", href: "/events" },
{ label: "Student Life", href: "/student-life" },
],
},
{
@@ -150,9 +120,8 @@ export default function LandingPage() {
},
{
title: "Connect", items: [
{ label: "Twitter", href: "#" },
{ label: "Facebook", href: "#" },
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "/faq" },
{ label: "Contact", href: "/contact" },
],
},
]}