Update src/app/support/page.tsx

This commit is contained in:
2026-06-11 01:52:45 +00:00
parent 4a2e873c74
commit 11fa9c01ad

View File

@@ -26,29 +26,17 @@ export default function LandingPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "/"},
id: "/",
},
{ {
name: "Curriculum", name: "Curriculum", id: "/#curriculum-overview"},
id: "/#curriculum-overview",
},
{ {
name: "Resources", name: "Resources", id: "/#resource-library"},
id: "/#resource-library",
},
{ {
name: "Pricing", name: "Pricing", id: "/#pricing"},
id: "/#pricing",
},
{ {
name: "FAQ", name: "FAQ", id: "/#faq"},
id: "/#faq",
},
{ {
name: "Dashboard", name: "Dashboard", id: "/dashboard"},
id: "/dashboard",
},
]} ]}
logoSrc="http://img.b2bpic.net/free-vector/times-square-polygonal_1057-3468.jpg" logoSrc="http://img.b2bpic.net/free-vector/times-square-polygonal_1057-3468.jpg"
logoAlt="Financial Freedom Blueprint Logo" logoAlt="Financial Freedom Blueprint Logo"
@@ -62,20 +50,15 @@ export default function LandingPage() {
<ContactCTA <ContactCTA
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "glowing-orb", variant: "sparkles-gradient"}}
}}
tag="Need Help?" tag="Need Help?"
title="Reach Out to Our Support Team" title="Reach Out to Our Support Team"
description="Our dedicated support team is here to assist you with any questions or issues you may have about the platform or your course." description="Our dedicated support team is here to assist you with any questions or issues you may have about the platform or your course."
buttons={[ buttons={[
{ {
text: "Submit a Support Ticket", text: "Submit a Support Ticket", href: "/support/ticket"},
href: "/support/ticket",
},
{ {
text: "Live Chat", text: "Live Chat", href: "/support/chat"},
href: "/support/chat",
},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
/> />
@@ -87,20 +70,11 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
faqs={[ faqs={[
{ {
id: "s1", id: "s1", title: "How do I access my course after purchase?", content: "Once your payment is confirmed, log in to your account and navigate to the 'Dashboard' where you'll find 'Course Modules' to begin your learning journey."},
title: "How do I access my course after purchase?",
content: "Once your payment is confirmed, log in to your account and navigate to the 'Dashboard' where you'll find 'Course Modules' to begin your learning journey.",
},
{ {
id: "s2", id: "s2", title: "I forgot my password, what should I do?", content: "On the login page, click 'Forgot Password'. Enter your registered email address, and we'll send you a link to reset your password."},
title: "I forgot my password, what should I do?",
content: "On the login page, click 'Forgot Password'. Enter your registered email address, and we'll send you a link to reset your password.",
},
{ {
id: "s3", id: "s3", title: "How can I change my language settings?", content: "You can change the language preference for the platform in your 'Settings' page within the student dashboard."},
title: "How can I change my language settings?",
content: "You can change the language preference for the platform in your 'Settings' page within the student dashboard.",
},
]} ]}
imageSrc="http://img.b2bpic.net/free-vector/online-math-tutoring-abstract-concept-illustration-math-private-lessons-reach-your-academic-goals-online-education-quarantine-homeschooling-qualified-teachers_335657-3482.jpg" imageSrc="http://img.b2bpic.net/free-vector/online-math-tutoring-abstract-concept-illustration-math-private-lessons-reach-your-academic-goals-online-education-quarantine-homeschooling-qualified-teachers_335657-3482.jpg"
imageAlt="Customer support illustration" imageAlt="Customer support illustration"
@@ -119,66 +93,39 @@ export default function LandingPage() {
logoText="Financial Freedom Blueprint" logoText="Financial Freedom Blueprint"
columns={[ columns={[
{ {
title: "Course", title: "Course", items: [
items: [
{ {
label: "Curriculum", label: "Curriculum", href: "/#curriculum-overview"},
href: "/#curriculum-overview",
},
{ {
label: "Resources", label: "Resources", href: "/#resource-library"},
href: "/#resource-library",
},
{ {
label: "Pricing", label: "Pricing", href: "/#pricing"},
href: "/#pricing",
},
{ {
label: "Enroll Now", label: "Enroll Now", href: "/checkout"},
href: "/checkout",
},
], ],
}, },
{ {
title: "Platform", title: "Platform", items: [
items: [
{ {
label: "Dashboard", label: "Dashboard", href: "/dashboard"},
href: "/dashboard",
},
{ {
label: "Community", label: "Community", href: "/community"},
href: "/community",
},
{ {
label: "Certificates", label: "Certificates", href: "/certificates"},
href: "/certificates",
},
{ {
label: "Progress Tracker", label: "Progress Tracker", href: "/progress"},
href: "/progress",
},
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ {
label: "FAQ", label: "FAQ", href: "/#faq"},
href: "/#faq",
},
{ {
label: "Contact Us", label: "Contact Us", href: "/support"},
href: "/support",
},
{ {
label: "Help Center", label: "Help Center", href: "/support"},
href: "/support",
},
{ {
label: "Privacy Policy", label: "Privacy Policy", href: "#"},
href: "#",
},
], ],
}, },
]} ]}