Update src/app/contact/page.tsx

This commit is contained in:
2026-05-11 20:55:13 +00:00
parent 8c6167d468
commit 63f5176e93

View File

@@ -3,7 +3,6 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
@@ -25,30 +24,12 @@ export default function LandingPage() {
<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",
},
{ 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"
/>
@@ -57,87 +38,21 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
title="Reach Our Office"
description="We look forward to partnering with you."
tag="Contact Info"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardSix
textboxLayout="default"
useInvertedBackground={false}
title="Partnership Process"
description="How to get started."
features={[
{
title: "Consultation",
description: "Initial project assessment.",
imageSrc: "http://img.b2bpic.net/free-photo/startup-worker-uses-laptop-open-space-reviewing-project-data-documents-workstation-executive-assistant-working-marketing-strategy-business-development-ai-developer_482257-65810.jpg",
},
{
title: "Bid Submission",
description: "Transparent project pricing.",
imageSrc: "http://img.b2bpic.net/free-photo/electrician-is-studying-construction-drawing-with-coffee-his-hand_169016-12017.jpg",
},
]}
buttonText="Get Free Estimate"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Careers",
href: "/careers",
},
],
},
{
title: "Projects",
items: [
{
label: "Portfolio",
href: "/projects",
},
{
label: "Safety",
href: "/safety",
},
],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "Request Bid",
href: "/contact",
},
],
},
]}
columns={[]}
logoText="Jasso Framing LLC"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}