Update src/app/contact/page.tsx

This commit is contained in:
2026-01-16 12:56:43 +00:00
parent 1401d38a86
commit 8f156f8982

View File

@@ -44,19 +44,13 @@ export default function ContactPage() {
accordionAnimationType="smooth" accordionAnimationType="smooth"
faqs={[ faqs={[
{ {
id: "1", id: "1", title: "How do I apply?", content: "Applications are simple and quick. Visit our application portal, fill out basic information, take a brief assessment, and schedule an interview with our admissions team. Most decisions are made within 48 hours."
title: "How do I apply?",
content: "Applications are simple and quick. Visit our application portal, fill out basic information, take a brief assessment, and schedule an interview with our admissions team. Most decisions are made within 48 hours."
}, },
{ {
id: "2", id: "2", title: "When are the next cohorts starting?", content: "We offer rolling admissions with cohorts starting every month. New Full Stack programs begin on the 1st of each month, with Mobile Development starting mid-month and Data Science programs available on rotating schedules."
title: "When are the next cohorts starting?",
content: "We offer rolling admissions with cohorts starting every month. New Full Stack programs begin on the 1st of each month, with Mobile Development starting mid-month and Data Science programs available on rotating schedules."
}, },
{ {
id: "3", id: "3", title: "What happens after I enroll?", content: "After enrollment, you'll receive pre-course materials, get access to our learning platform, join the student community, and have your first orientation meeting scheduled. You'll also be paired with a peer mentor."
title: "What happens after I enroll?",
content: "After enrollment, you'll receive pre-course materials, get access to our learning platform, join the student community, and have your first orientation meeting scheduled. You'll also be paired with a peer mentor."
} }
]} ]}
/> />
@@ -67,8 +61,7 @@ export default function ContactPage() {
copyrightText="© 2025 Engineer IT School. All rights reserved." copyrightText="© 2025 Engineer IT School. All rights reserved."
columns={[ columns={[
{ {
title: "Programs", title: "Programs", items: [
items: [
{ label: "Web Development", href: "courses" }, { label: "Web Development", href: "courses" },
{ label: "Mobile Development", href: "courses" }, { label: "Mobile Development", href: "courses" },
{ label: "Data Science", href: "courses" }, { label: "Data Science", href: "courses" },
@@ -76,8 +69,7 @@ export default function ContactPage() {
] ]
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About", href: "about" }, { label: "About", href: "about" },
{ label: "Team", href: "instructors" }, { label: "Team", href: "instructors" },
{ label: "Blog", href: "blog" }, { label: "Blog", href: "blog" },
@@ -85,8 +77,7 @@ export default function ContactPage() {
] ]
}, },
{ {
title: "Resources", title: "Resources", items: [
items: [
{ label: "FAQ", href: "faq" }, { label: "FAQ", href: "faq" },
{ label: "Contact Us", href: "contact" }, { label: "Contact Us", href: "contact" },
{ label: "Alumni", href: "alumni" }, { label: "Alumni", href: "alumni" },
@@ -97,4 +88,4 @@ export default function ContactPage() {
/> />
</ThemeProvider> </ThemeProvider>
); );
} }