Update src/app/about/page.tsx

This commit is contained in:
2026-05-11 20:55:34 +00:00
parent cfbf207fa1
commit 1bb6f75165

View File

@@ -21,38 +21,37 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Projects", id: "/projects" },
{ name: "Safety", id: "/safety" },
{ name: "Contact", id: "/contact" },
]}
brandName="Jasso Framing LLC"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Projects", id: "/projects" },
{ name: "Safety", id: "/safety" },
{ name: "Contact", id: "/contact" },
]}
brandName="Jasso Framing LLC"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardSix
textboxLayout="default"
useInvertedBackground={false}
title="Our History"
description="Founded on precision and trust, we have grown into Texas' leading framing partner."
features={[]}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardSix
textboxLayout="default"
useInvertedBackground={false}
title="Our History"
description="Founded on precision and trust, we have grown into Texas' leading framing partner."
features={[]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[]}
logoText="Jasso Framing LLC"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[]}
logoText="Jasso Framing LLC"
/>
</div>
</ReactLenis>
</ReactLenis>
</ThemeProvider>
);
}