Update src/app/contact/page.tsx

This commit is contained in:
2026-05-10 22:44:35 +00:00
parent f964936652
commit c6aa46e607

View File

@@ -6,7 +6,7 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -24,68 +24,36 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Projects",
id: "/projects",
},
{
name: "About",
id: "/about",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Projects", id: "/projects" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
]}
brandName="Apex Construction"
brandName="Diaz Plastering"
/>
</div>
<div id="contact-body" data-section="contact-body">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Get in touch"
title="Request a Free Estimate"
description="Let's discuss your next project. Contact our expert team today."
buttons={[
{
text: "Send Message",
href: "#",
},
]}
buttons={[{ text: "Send Message", href: "#" }]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Contact"
title="Get a Consultation"
description="Let's bring your vision to life."
buttons={[
{
text: "Call Now",
href: "tel:5555555",
},
]}
buttons={[{ text: "Call Now", href: "tel:5555555" }]}
/>
</div>
@@ -93,41 +61,24 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Navigation",
items: [
{
label: "Services",
href: "/services",
},
{
label: "Projects",
href: "/projects",
},
{
label: "About",
href: "/about",
},
title: "Navigation", items: [
{ label: "Services", href: "/services" },
{ label: "Projects", href: "/projects" },
{ label: "About", href: "/about" },
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "License #123456",
href: "#",
},
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "License #123456", href: "#" },
],
},
]}
logoText="Apex Construction"
copyrightText="© 2025 Apex Construction. All rights reserved."
logoText="Diaz Plastering"
copyrightText="© 2025 Diaz Plastering. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}