Update src/app/account/page.tsx

This commit is contained in:
2026-06-04 17:16:40 +00:00
parent 228e158007
commit 6773fc761f

View File

@@ -7,6 +7,7 @@ import FaqBase from '@/components/sections/faq/FaqBase';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import SplitAbout from '@/components/sections/about/SplitAbout';
import { UserCog, MessageCircleQuestion } from "lucide-react";
export default function LandingPage() {
return (
@@ -27,39 +28,23 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Features",
id: "/features",
},
name: "Features", id: "/features"},
{
name: "Pricing",
id: "/pricing",
},
name: "Pricing", id: "/pricing"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Blog",
id: "/blog",
},
name: "Blog", id: "/blog"},
{
name: "Docs",
id: "/docs",
},
name: "Docs", id: "/docs"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="NetMind"
button={{
text: "Start Free Trial",
href: "/signup",
}}
text: "Start Free Trial", href: "/signup"}}
/>
</div>
@@ -74,21 +59,13 @@ export default function LandingPage() {
tagIcon={UserCog}
bulletPoints={[
{
title: "Profile Information",
description: "Update your name, email, and contact details.",
},
title: "Profile Information", description: "Update your name, email, and contact details."},
{
title: "Security & Privacy",
description: "Change password, enable 2FA, and review privacy settings.",
},
title: "Security & Privacy", description: "Change password, enable 2FA, and review privacy settings."},
{
title: "Notification Preferences",
description: "Control how and when you receive alerts and updates.",
},
title: "Notification Preferences", description: "Control how and when you receive alerts and updates."},
{
title: "Connected Integrations",
description: "Manage third-party applications connected to your account.",
},
title: "Connected Integrations", description: "Manage third-party applications connected to your account."},
]}
imageSrc="http://img.b2bpic.net/free-photo/social-media-manager-uses-device-with-isolated-display-online-presence_482257-126526.jpg"
imageAlt="User managing account settings on a digital device"
@@ -101,25 +78,13 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "How do I change my password?",
content: "You can change your password in the 'Security & Privacy' section of your account settings. Click 'Change Password' and follow the prompts.",
},
id: "1", title: "How do I change my password?", content: "You can change your password in the 'Security & Privacy' section of your account settings. Click 'Change Password' and follow the prompts."},
{
id: "2",
title: "Can I update my email address?",
content: "Yes, your email address can be updated in the 'Profile Information' section. A verification step may be required to confirm the change.",
},
id: "2", title: "Can I update my email address?", content: "Yes, your email address can be updated in the 'Profile Information' section. A verification step may be required to confirm the change."},
{
id: "3",
title: "How do I enable two-factor authentication (2FA)?",
content: "Navigate to 'Security & Privacy' and look for the 'Two-Factor Authentication' option. Follow the instructions to set it up for added security.",
},
id: "3", title: "How do I enable two-factor authentication (2FA)?", content: "Navigate to 'Security & Privacy' and look for the 'Two-Factor Authentication' option. Follow the instructions to set it up for added security."},
{
id: "4",
title: "What if I forget my login details?",
content: "On the login page, click 'Forgot Password' and enter your registered email. We will send you instructions to reset your password.",
},
id: "4", title: "What if I forget my login details?", content: "On the login page, click 'Forgot Password' and enter your registered email. We will send you instructions to reset your password."},
]}
title="Frequently Asked Questions"
description="Find quick answers to common questions about managing your NetMind account."
@@ -136,28 +101,17 @@ export default function LandingPage() {
description="Our dedicated support team is here to help. Fill out the form below and we'll get back to you promptly."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email",
required: true,
name: "email", type: "email", placeholder: "Your Email", required: true,
},
{
name: "subject",
type: "text",
placeholder: "Subject",
required: true,
name: "subject", type: "text", placeholder: "Subject", required: true,
},
]}
textarea={{
name: "message",
placeholder: "Your Message",
rows: 4,
name: "message", placeholder: "Your Message", rows: 4,
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/worker-providing-live-chat-support-typing-keyboard-using-ai-chatbot_482257-126204.jpg"
@@ -171,54 +125,33 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Product",
items: [
title: "Product", items: [
{
label: "Features",
href: "/features",
},
label: "Features", href: "/features"},
{
label: "Pricing",
href: "/pricing",
},
label: "Pricing", href: "/pricing"},
{
label: "Demo",
href: "/demo",
},
label: "Demo", href: "/demo"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Careers",
href: "/careers",
},
label: "Careers", href: "/careers"},
{
label: "Blog",
href: "/blog",
},
label: "Blog", href: "/blog"},
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{
label: "Support",
href: "/support",
},
label: "Support", href: "/support"},
{
label: "FAQs",
href: "/faqs",
},
label: "FAQs", href: "/faqs"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
]}