Update src/app/support/page.tsx
This commit is contained in:
@@ -26,29 +26,17 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Curriculum",
|
||||
id: "/#curriculum-overview",
|
||||
},
|
||||
name: "Curriculum", id: "/#curriculum-overview"},
|
||||
{
|
||||
name: "Resources",
|
||||
id: "/#resource-library",
|
||||
},
|
||||
name: "Resources", id: "/#resource-library"},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "/#pricing",
|
||||
},
|
||||
name: "Pricing", id: "/#pricing"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/#faq",
|
||||
},
|
||||
name: "FAQ", id: "/#faq"},
|
||||
{
|
||||
name: "Dashboard",
|
||||
id: "/dashboard",
|
||||
},
|
||||
name: "Dashboard", id: "/dashboard"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/times-square-polygonal_1057-3468.jpg"
|
||||
logoAlt="Financial Freedom Blueprint Logo"
|
||||
@@ -62,20 +50,15 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "glowing-orb",
|
||||
}}
|
||||
variant: "sparkles-gradient"}}
|
||||
tag="Need Help?"
|
||||
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."
|
||||
buttons={[
|
||||
{
|
||||
text: "Submit a Support Ticket",
|
||||
href: "/support/ticket",
|
||||
},
|
||||
text: "Submit a Support Ticket", href: "/support/ticket"},
|
||||
{
|
||||
text: "Live Chat",
|
||||
href: "/support/chat",
|
||||
},
|
||||
text: "Live Chat", href: "/support/chat"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -87,20 +70,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
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.",
|
||||
},
|
||||
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."},
|
||||
{
|
||||
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.",
|
||||
},
|
||||
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."},
|
||||
{
|
||||
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.",
|
||||
},
|
||||
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."},
|
||||
]}
|
||||
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"
|
||||
@@ -119,66 +93,39 @@ export default function LandingPage() {
|
||||
logoText="Financial Freedom Blueprint"
|
||||
columns={[
|
||||
{
|
||||
title: "Course",
|
||||
items: [
|
||||
title: "Course", items: [
|
||||
{
|
||||
label: "Curriculum",
|
||||
href: "/#curriculum-overview",
|
||||
},
|
||||
label: "Curriculum", href: "/#curriculum-overview"},
|
||||
{
|
||||
label: "Resources",
|
||||
href: "/#resource-library",
|
||||
},
|
||||
label: "Resources", href: "/#resource-library"},
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "/#pricing",
|
||||
},
|
||||
label: "Pricing", href: "/#pricing"},
|
||||
{
|
||||
label: "Enroll Now",
|
||||
href: "/checkout",
|
||||
},
|
||||
label: "Enroll Now", href: "/checkout"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Platform",
|
||||
items: [
|
||||
title: "Platform", items: [
|
||||
{
|
||||
label: "Dashboard",
|
||||
href: "/dashboard",
|
||||
},
|
||||
label: "Dashboard", href: "/dashboard"},
|
||||
{
|
||||
label: "Community",
|
||||
href: "/community",
|
||||
},
|
||||
label: "Community", href: "/community"},
|
||||
{
|
||||
label: "Certificates",
|
||||
href: "/certificates",
|
||||
},
|
||||
label: "Certificates", href: "/certificates"},
|
||||
{
|
||||
label: "Progress Tracker",
|
||||
href: "/progress",
|
||||
},
|
||||
label: "Progress Tracker", href: "/progress"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/#faq",
|
||||
},
|
||||
label: "FAQ", href: "/#faq"},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/support",
|
||||
},
|
||||
label: "Contact Us", href: "/support"},
|
||||
{
|
||||
label: "Help Center",
|
||||
href: "/support",
|
||||
},
|
||||
label: "Help Center", href: "/support"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user