Update src/app/contact/page.tsx

This commit is contained in:
2026-03-03 22:09:34 +00:00
parent 3e3f35d367
commit 568b5697eb

View File

@@ -19,24 +19,21 @@ export default function ContactPage() {
const footerColumns = [
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "How It Works", href: "/how-it-works" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Browse",
items: [
title: "Browse", items: [
{ label: "Inventory", href: "/inventory" },
{ label: "Mail Route Vehicles", href: "/mail-route-vehicles" },
{ label: "FAQ", href: "#faq" },
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Financing Terms", href: "#" },
@@ -59,7 +56,8 @@ export default function ContactPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="JDM Imports"
brandName="Ultraspeed"
brandLogo="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AS9gOyc8R9tNGil9EtTzxBJzBv/uploaded-1772575677052-5rfflgk7.png"
navItems={navItems}
button={{ text: "Contact Us", href: "/contact" }}
animateOnLoad={true}
@@ -76,7 +74,7 @@ export default function ContactPage() {
{ text: "Back to Home", href: "/" },
]}
imageSrc="http://img.b2bpic.net/free-photo/man-sits-blue-bmw-street_1304-3191.jpg?_wi=5"
imageAlt="Contact JDM Imports"
imageAlt="Contact Ultraspeed"
mediaAnimation="slide-up"
tagAnimation="slide-up"
buttonAnimation="slide-up"
@@ -105,20 +103,11 @@ export default function ContactPage() {
description="Find quick answers to frequently asked questions about contacting us and our services."
faqs={[
{
id: "1",
title: "What's the best way to reach your team?",
content: "You can reach us via email, phone, or by filling out the contact form on this page. We typically respond within 24 hours during business days.",
},
id: "1", title: "What's the best way to reach your team?", content: "You can reach us via email, phone, or by filling out the contact form on this page. We typically respond within 24 hours during business days."},
{
id: "2",
title: "Do you offer consultations before purchase?",
content: "Absolutely! We recommend a consultation to discuss your needs, budget, and preferences. This helps us find the perfect vehicle for you.",
},
id: "2", title: "Do you offer consultations before purchase?", content: "Absolutely! We recommend a consultation to discuss your needs, budget, and preferences. This helps us find the perfect vehicle for you."},
{
id: "3",
title: "Can I get updates on the import process?",
content: "Yes. We provide regular updates at every stage of your import. You'll receive email and phone updates so you're always informed.",
},
id: "3", title: "Can I get updates on the import process?", content: "Yes. We provide regular updates at every stage of your import. You'll receive email and phone updates so you're always informed."},
]}
faqsAnimation="slide-up"
textboxLayout="default"
@@ -130,12 +119,12 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/red-steel-tool-box-garage_613910-13485.jpg?_wi=5"
imageAlt="JDM automotive background"
logoText="JDM Imports"
copyrightText="© 2025 JDM Imports. All rights reserved."
imageAlt="Ultraspeed automotive background"
logoText="Ultraspeed"
copyrightText="© 2025 Ultraspeed. All rights reserved."
columns={footerColumns}
/>
</div>
</ThemeProvider>
);
}
}