Update src/app/about/page.tsx

This commit is contained in:
2026-03-30 13:09:19 +00:00
parent 8e9ad9be93
commit 0ebf4bc341

View File

@@ -22,62 +22,40 @@ export default function LandingPage() {
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Inventory",
id: "/inventory",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Core Code Motors"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Inventory", id: "/inventory" }, { name: "Reviews", id: "/reviews" }, { name: "Contact", id: "/contact" }]}
brandName="Core Code Motors"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="about-intro" data-section="about-intro">
<MediaAbout
useInvertedBackground={false}
title="Decades of Excellence"
description="Serving the automotive needs of Lebanon with precision and trust since 2005."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfND76Tg2UUcx54pIUQkTeDQUz/professional-dealership-interior-with-br-1774876099702-f663a73f.png"
imageAlt="Modern car showroom interior"
/>
</div>
<div id="about-intro" data-section="about-intro">
<MediaAbout
useInvertedBackground={false}
title="Decades of Excellence"
description="Serving the automotive needs of Lebanon with precision and trust since 2005."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfND76Tg2UUcx54pIUQkTeDQUz/professional-dealership-interior-with-br-1774876099702-f663a73f.png"
imageAlt="Modern car showroom interior"
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={false}
title="Our Heritage"
description={[
"Founded in 2005, Core Code Motors has transformed the way Lebanese drivers experience automotive luxury.",
"Our commitment to transparency and quality has made us the trusted name in the industry.",
]}
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={false}
title="Our Heritage"
description={[
"Founded in 2005, Core Code Motors has transformed the way Lebanese drivers experience automotive luxury.", "Our commitment to transparency and quality has made us the trusted name in the industry."]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Core Code Motors"
copyrightText="© 2026 Core Code Studio"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Core Code Motors"
copyrightText="© 2026 Core Code Studio"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}