Update src/app/faq/page.tsx

This commit is contained in:
2026-03-31 12:29:02 +00:00
parent 96759d54c6
commit f3db6645da

View File

@@ -8,33 +8,43 @@ import FaqBase from '@/components/sections/faq/FaqBase';
export default function FaqPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Events", id: "/events" },
{ name: "Student Life", id: "/student-life" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
]}
brandName="CUT"
/>
<FaqBase
title="Frequently Asked Questions"
faqsAnimation="slide-up"
textboxLayout="default"
faqs={[
{ id: "q1", title: "What are the admission requirements?", content: "Requirements vary by program; please consult the specific course department." },
{ id: "q2", title: "How do I register for courses?", content: "Registration is handled via the Student Portal before the semester starts." },
{ id: "q3", title: "Do you offer accommodation?", content: "Yes, limited on-campus accommodation is available based on priority criteria." }
]}
/>
<FooterBaseCard
columns={[
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "FAQ", href: "/faq" }] }
]}
/>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Programs", id: "/programs" },
{ name: "Admissions", id: "/admissions" },
{ name: "Faculty", id: "/faculty" },
{ name: "FAQ", id: "/faq" },
{ name: "Student Life", id: "/student-life" },
{ name: "Contact", id: "/contact" },
]}
brandName="CUT"
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
title="Frequently Asked Questions"
description="Get answers to common queries about our institution."
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "q1", title: "What are the admission requirements?", content: "Requirements vary by program; please consult the specific course department." },
{ id: "q2", title: "How do I register for courses?", content: "Registration is handled via the Student Portal before the semester starts." },
{ id: "q3", title: "Do you offer accommodation?", content: "Yes, limited on-campus accommodation is available based on priority criteria." }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
columns={[
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "FAQ", href: "/faq" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);