Merge version_1 into main #1

Merged
bender merged 2 commits from version_1 into main 2026-06-10 16:53:15 +00:00
2 changed files with 56 additions and 168 deletions

View File

@@ -26,48 +26,28 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "/"},
id: "/",
},
{ {
name: "Personal & Commercial Shipping", name: "Personal & Commercial Shipping", id: "/shipping"},
id: "/shipping",
},
{ {
name: "Your Receiving Address", name: "Your Receiving Address", id: "/receiving-address"},
id: "/receiving-address",
},
{ {
name: "Package Tracking", name: "Package Tracking", id: "/track"},
id: "/track",
},
{ {
name: "Products & Services", name: "Products & Services", id: "/services"},
id: "/services",
},
{ {
name: "About Us", name: "About Us", id: "/about"},
id: "/about",
},
{ {
name: "Abbotsford Office", name: "Abbotsford Office", id: "/abbotsford"},
id: "/abbotsford",
},
{ {
name: "Contact Us", name: "Contact Us", id: "/contact"},
id: "/contact",
},
{ {
name: "Sign Up", name: "Sign Up", id: "/signup"},
id: "/signup",
},
]} ]}
logoSrc="http://img.b2bpic.net/free-vector/canadian-independence-day-label_1057-1215.jpg" logoSrc="http://img.b2bpic.net/free-vector/canadian-independence-day-label_1057-1215.jpg"
brandName="Letterlock Sumas" brandName="Letterlock Sumas"
button={{ button={{
text: "Sign Up", text: "Sign Up", href: "/signup"}}
href: "/signup",
}}
animateOnLoad={true} animateOnLoad={true}
/> />
</div> </div>
@@ -76,15 +56,13 @@ export default function LandingPage() {
<ContactCTA <ContactCTA
useInvertedBackground={true} useInvertedBackground={true}
background={{ background={{
variant: "plain", variant: "plain"}}
}}
tag="Contact Us" tag="Contact Us"
title="Let's Connect for Your Logistics Needs" title="Let's Connect for Your Logistics Needs"
description="Have questions or need a custom shipping solution? Reach out to our team via the form below, and we'll get back to you promptly." description="Have questions or need a custom shipping solution? Reach out to our team via the form below, and we'll get back to you promptly."
buttons={[ buttons={[
{ {
text: "Send a Message", text: "Send a Message", onClick: () => alert('Form submitted!'),
onClick: "() => alert('Form submitted!')",
}, },
]} ]}
/> />
@@ -99,29 +77,17 @@ export default function LandingPage() {
description="Visit us at our Sumas, WA office or reach out via phone/email during business hours. We're here to help!" description="Visit us at our Sumas, WA office or reach out via phone/email during business hours. We're here to help!"
bulletPoints={[ bulletPoints={[
{ {
title: "Address", title: "Address", description: "726 Cherry St, Sumas, WA 98295"},
description: "726 Cherry St, Sumas, WA 98295",
},
{ {
title: "Phone", title: "Phone", description: "000-000-0000"},
description: "000-000-0000",
},
{ {
title: "Email (General)", title: "Email (General)", description: "sumas@letterlock.com"},
description: "sumas@letterlock.com",
},
{ {
title: "Email (Direct)", title: "Email (Direct)", description: "cloewen@letterlock.com"},
description: "cloewen@letterlock.com",
},
{ {
title: "Business Hours (Mon-Fri)", title: "Business Hours (Mon-Fri)", description: "9:00 AM - 5:00 PM"},
description: "9:00 AM - 5:00 PM",
},
{ {
title: "Weekends", title: "Weekends", description: "Saturday: Closed, Sunday: Closed"},
description: "Saturday: Closed, Sunday: Closed",
},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/3d-smartphone-device-with-map-gps-technology_23-2150458982.jpg" imageSrc="http://img.b2bpic.net/free-photo/3d-smartphone-device-with-map-gps-technology_23-2150458982.jpg"
imageAlt="Interactive map of Letterlock Sumas location" imageAlt="Interactive map of Letterlock Sumas location"
@@ -137,57 +103,35 @@ export default function LandingPage() {
{ {
items: [ items: [
{ {
label: "Home", label: "Home", href: "/"},
href: "/",
},
{ {
label: "Personal & Commercial Shipping", label: "Personal & Commercial Shipping", href: "/shipping"},
href: "/shipping",
},
{ {
label: "Your Receiving Address", label: "Your Receiving Address", href: "/receiving-address"},
href: "/receiving-address",
},
{ {
label: "Package Tracking", label: "Package Tracking", href: "/track"},
href: "/track",
},
], ],
}, },
{ {
items: [ items: [
{ {
label: "Products & Services", label: "Products & Services", href: "/services"},
href: "/services",
},
{ {
label: "About Us", label: "About Us", href: "/about"},
href: "/about",
},
{ {
label: "Abbotsford Office", label: "Abbotsford Office", href: "/abbotsford"},
href: "/abbotsford",
},
{ {
label: "Contact Us", label: "Contact Us", href: "/contact"},
href: "/contact",
},
], ],
}, },
{ {
items: [ items: [
{ {
label: "Sign Up", label: "Sign Up", href: "/signup"},
href: "/signup",
},
{ {
label: "Privacy Policy", label: "Privacy Policy", href: "#"},
href: "#",
},
{ {
label: "Terms of Service", label: "Terms of Service", href: "#"},
href: "#",
},
], ],
}, },
]} ]}

View File

@@ -26,48 +26,28 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "/"},
id: "/",
},
{ {
name: "Personal & Commercial Shipping", name: "Personal & Commercial Shipping", id: "/shipping"},
id: "/shipping",
},
{ {
name: "Your Receiving Address", name: "Your Receiving Address", id: "/receiving-address"},
id: "/receiving-address",
},
{ {
name: "Package Tracking", name: "Package Tracking", id: "/track"},
id: "/track",
},
{ {
name: "Products & Services", name: "Products & Services", id: "/services"},
id: "/services",
},
{ {
name: "About Us", name: "About Us", id: "/about"},
id: "/about",
},
{ {
name: "Abbotsford Office", name: "Abbotsford Office", id: "/abbotsford"},
id: "/abbotsford",
},
{ {
name: "Contact Us", name: "Contact Us", id: "/contact"},
id: "/contact",
},
{ {
name: "Sign Up", name: "Sign Up", id: "/signup"},
id: "/signup",
},
]} ]}
logoSrc="http://img.b2bpic.net/free-vector/canadian-independence-day-label_1057-1215.jpg" logoSrc="http://img.b2bpic.net/free-vector/canadian-independence-day-label_1057-1215.jpg"
brandName="Letterlock Sumas" brandName="Letterlock Sumas"
button={{ button={{
text: "Sign Up", text: "Sign Up", href: "/signup"}}
href: "/signup",
}}
animateOnLoad={true} animateOnLoad={true}
/> />
</div> </div>
@@ -76,15 +56,13 @@ export default function LandingPage() {
<ContactCTA <ContactCTA
useInvertedBackground={true} useInvertedBackground={true}
background={{ background={{
variant: "sparkles-gradient", variant: "sparkles-gradient"}}
}}
tag="Join Us" tag="Join Us"
title="Unlock Your Global Shipping Solution" title="Unlock Your Global Shipping Solution"
description="Sign up today to get your dedicated US receiving address and access seamless cross-border logistics." description="Sign up today to get your dedicated US receiving address and access seamless cross-border logistics."
buttons={[ buttons={[
{ {
text: "Create Your Account", text: "Create Your Account", onClick: () => alert('Sign up initiated!'),
onClick: "() => alert('Sign up initiated!')",
}, },
]} ]}
/> />
@@ -96,25 +74,13 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
faqs={[ faqs={[
{ {
id: "how-to-start", 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."},
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", 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."},
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", 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."},
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", 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: "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" title="Frequently Asked Questions About Signing Up"
description="Quick answers to help you get started with Letterlock Sumas." description="Quick answers to help you get started with Letterlock Sumas."
@@ -130,57 +96,35 @@ export default function LandingPage() {
{ {
items: [ items: [
{ {
label: "Home", label: "Home", href: "/"},
href: "/",
},
{ {
label: "Personal & Commercial Shipping", label: "Personal & Commercial Shipping", href: "/shipping"},
href: "/shipping",
},
{ {
label: "Your Receiving Address", label: "Your Receiving Address", href: "/receiving-address"},
href: "/receiving-address",
},
{ {
label: "Package Tracking", label: "Package Tracking", href: "/track"},
href: "/track",
},
], ],
}, },
{ {
items: [ items: [
{ {
label: "Products & Services", label: "Products & Services", href: "/services"},
href: "/services",
},
{ {
label: "About Us", label: "About Us", href: "/about"},
href: "/about",
},
{ {
label: "Abbotsford Office", label: "Abbotsford Office", href: "/abbotsford"},
href: "/abbotsford",
},
{ {
label: "Contact Us", label: "Contact Us", href: "/contact"},
href: "/contact",
},
], ],
}, },
{ {
items: [ items: [
{ {
label: "Sign Up", label: "Sign Up", href: "/signup"},
href: "/signup",
},
{ {
label: "Privacy Policy", label: "Privacy Policy", href: "#"},
href: "#",
},
{ {
label: "Terms of Service", label: "Terms of Service", href: "#"},
href: "#",
},
], ],
}, },
]} ]}