Update src/app/signup/page.tsx

This commit is contained in:
2026-06-10 16:53:11 +00:00
parent e33ddde3eb
commit 1f9fa41948

View File

@@ -26,48 +26,28 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Personal & Commercial Shipping",
id: "/shipping",
},
name: "Personal & Commercial Shipping", id: "/shipping"},
{
name: "Your Receiving Address",
id: "/receiving-address",
},
name: "Your Receiving Address", id: "/receiving-address"},
{
name: "Package Tracking",
id: "/track",
},
name: "Package Tracking", id: "/track"},
{
name: "Products & Services",
id: "/services",
},
name: "Products & Services", id: "/services"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Abbotsford Office",
id: "/abbotsford",
},
name: "Abbotsford Office", id: "/abbotsford"},
{
name: "Contact Us",
id: "/contact",
},
name: "Contact Us", id: "/contact"},
{
name: "Sign Up",
id: "/signup",
},
name: "Sign Up", id: "/signup"},
]}
logoSrc="http://img.b2bpic.net/free-vector/canadian-independence-day-label_1057-1215.jpg"
brandName="Letterlock Sumas"
button={{
text: "Sign Up",
href: "/signup",
}}
text: "Sign Up", href: "/signup"}}
animateOnLoad={true}
/>
</div>
@@ -76,15 +56,13 @@ export default function LandingPage() {
<ContactCTA
useInvertedBackground={true}
background={{
variant: "sparkles-gradient",
}}
variant: "sparkles-gradient"}}
tag="Join Us"
title="Unlock Your Global Shipping Solution"
description="Sign up today to get your dedicated US receiving address and access seamless cross-border logistics."
buttons={[
{
text: "Create Your Account",
onClick: "() => alert('Sign up initiated!')",
text: "Create Your Account", onClick: () => alert('Sign up initiated!'),
},
]}
/>
@@ -96,25 +74,13 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
id: "how-to-start",
title: "How do I get started?",
content: "Simply click the 'Create Your Account' button above, fill out the registration form, and verify your email. You'll then receive your unique US receiving address.",
},
id: "how-to-start", title: "How do I get started?", content: "Simply click the 'Create Your Account' button above, fill out the registration form, and verify your email. You'll then receive your unique US receiving address."},
{
id: "what-do-i-need",
title: "What information do I need to sign up?",
content: "You will need a valid email address, your name, and a valid Canadian mailing address. Additional verification may be required for certain services.",
},
id: "what-do-i-need", title: "What information do I need to sign up?", content: "You will need a valid email address, your name, and a valid Canadian mailing address. Additional verification may be required for certain services."},
{
id: "is-it-secure",
title: "Is my personal information secure?",
content: "Absolutely. We use industry-standard encryption and security protocols to protect your personal data. Your privacy is our top priority.",
},
id: "is-it-secure", title: "Is my personal information secure?", content: "Absolutely. We use industry-standard encryption and security protocols to protect your personal data. Your privacy is our top priority."},
{
id: "cost-to-signup",
title: "Is there a fee to sign up?",
content: "Creating an account is free. Fees apply only when you utilize our package receiving, shipping, or additional services. Refer to our pricing page for details.",
},
id: "cost-to-signup", title: "Is there a fee to sign up?", content: "Creating an account is free. Fees apply only when you utilize our package receiving, shipping, or additional services. Refer to our pricing page for details."},
]}
title="Frequently Asked Questions About Signing Up"
description="Quick answers to help you get started with Letterlock Sumas."
@@ -130,57 +96,35 @@ export default function LandingPage() {
{
items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "Personal & Commercial Shipping",
href: "/shipping",
},
label: "Personal & Commercial Shipping", href: "/shipping"},
{
label: "Your Receiving Address",
href: "/receiving-address",
},
label: "Your Receiving Address", href: "/receiving-address"},
{
label: "Package Tracking",
href: "/track",
},
label: "Package Tracking", href: "/track"},
],
},
{
items: [
{
label: "Products & Services",
href: "/services",
},
label: "Products & Services", href: "/services"},
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Abbotsford Office",
href: "/abbotsford",
},
label: "Abbotsford Office", href: "/abbotsford"},
{
label: "Contact Us",
href: "/contact",
},
label: "Contact Us", href: "/contact"},
],
},
{
items: [
{
label: "Sign Up",
href: "/signup",
},
label: "Sign Up", href: "/signup"},
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}