Update src/app/about/page.tsx

This commit is contained in:
2026-05-17 14:29:34 +00:00
parent f37c6fce18
commit ff636201f7

View File

@@ -7,7 +7,7 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SplitAbout from '@/components/sections/about/SplitAbout';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -22,105 +22,53 @@ export default function LandingPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Shop",
id: "/shop",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Voltix"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Voltix"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="default"
useInvertedBackground={false}
title="Our Engineering Philosophy"
description="Built for durability, performance, and style."
tag="Engineering"
bulletPoints={[
{
title: "Advanced Materials",
description: "Using carbon fiber and aerospace grade aluminum.",
},
{
title: "AI Integration",
description: "Machine learning that adapts to your habits.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/car-road-with-people-umbrellas-rainy-day_23-2148757078.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="about" data-section="about">
<SplitAbout
textboxLayout="default"
useInvertedBackground={false}
title="Our Engineering Philosophy"
description="Built for durability, performance, and style."
tag="Engineering"
bulletPoints={[
{ title: "Advanced Materials", description: "Using carbon fiber and aerospace grade aluminum." },
{ title: "AI Integration", description: "Machine learning that adapts to your habits." }
]}
imageSrc="http://img.b2bpic.net/free-photo/car-road-with-people-umbrellas-rainy-day_23-2148757078.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
text="Have questions about our mission? We are here to answer."
buttons={[
{
text: "Contact Us",
href: "/contact",
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{ variant: "plain" }}
text="Have questions about our mission? We are here to answer."
buttons={[{ text: "Contact Us", href: "/contact" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Voltix"
columns={[
{
title: "Navigate",
items: [
{
label: "Shop",
href: "/shop",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Voltix"
columns={[
{ title: "Navigate", items: [{ label: "Shop", href: "/shop" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);