Update src/app/about/page.tsx

This commit is contained in:
2026-03-03 22:09:33 +00:00
parent de403ded87
commit 3e3f35d367

View File

@@ -19,24 +19,21 @@ export default function AboutPage() {
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 AboutPage() {
>
<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}
@@ -68,7 +66,7 @@ export default function AboutPage() {
<div id="about-hero" data-section="about-hero">
<HeroBillboard
title="About JDM Imports"
title="About Ultraspeed"
description="We're passionate about bringing the best Japanese vehicles to American enthusiasts. Founded on principles of transparency, quality, and customer-first service, we've revolutionized the vehicle import process."
background={{ variant: "plain" }}
buttons={[
@@ -76,7 +74,7 @@ export default function AboutPage() {
{ text: "Our Process", href: "/how-it-works" },
]}
imageSrc="http://img.b2bpic.net/free-photo/man-sits-blue-bmw-street_1304-3191.jpg?_wi=4"
imageAlt="About JDM Imports"
imageAlt="About Ultraspeed"
mediaAnimation="slide-up"
tagAnimation="slide-up"
buttonAnimation="slide-up"
@@ -87,10 +85,7 @@ export default function AboutPage() {
<TextSplitAbout
title="Our Story & Mission"
description={[
"JDM Imports was founded by a team of automotive enthusiasts who experienced firsthand how complicated and stressful importing a Japanese vehicle could be. We decided to change that.",
"Today, we're dedicated to simplifying the import process through transparency, expertise, and unwavering commitment to customer satisfaction. We believe everyone should be able to own their dream JDM vehicle without the headaches.",
"Our mission is simple: provide the highest quality Japanese imports with complete transparency, fair pricing, and exceptional customer support. We don't just sell cars—we build relationships.",
]}
"Ultraspeed was founded by a team of automotive enthusiasts who experienced firsthand how complicated and stressful importing a Japanese vehicle could be. We decided to change that.", "Today, we're dedicated to simplifying the import process through transparency, expertise, and unwavering commitment to customer satisfaction. We believe everyone should be able to own their dream Japanese vehicle without the headaches.", "Our mission is simple: provide the highest quality Japanese imports with complete transparency, fair pricing, and exceptional customer support. We don't just sell cars—we build relationships."]}
useInvertedBackground={false}
buttons={[{ text: "Contact Our Team", href: "/contact" }]}
buttonAnimation="slide-up"
@@ -100,7 +95,7 @@ export default function AboutPage() {
<div id="about-cta" data-section="about-cta">
<ContactCTA
tag="Join Our Community"
title="Experience the JDM Imports Difference"
title="Experience the Ultraspeed Difference"
description="Whether you're a first-time importer or a seasoned enthusiast, we're here to help you find and import the perfect Japanese vehicle. Let's make your automotive dreams a reality."
buttons={[
{ text: "Browse Inventory", href: "/inventory" },
@@ -116,12 +111,12 @@ export default function AboutPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/red-steel-tool-box-garage_613910-13485.jpg?_wi=4"
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>
);
}
}