Update src/app/contact/page.tsx

This commit is contained in:
2026-04-08 06:12:01 +00:00
parent 11654ae9ee
commit 1c032c2267

View File

@@ -8,7 +8,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { Mail, Phone } from "lucide-react";
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -26,18 +26,9 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Projects",
id: "/projects",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Projects", id: "/projects" },
{ name: "Contact", id: "/contact" },
]}
brandName="A1 Roofmasters"
/>
@@ -46,9 +37,7 @@ export default function LandingPage() {
<div id="contact-page-form" data-section="contact-page-form">
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
text="Contact Us for a Free Estimate"
/>
</div>
@@ -58,21 +47,9 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Contact Details"
metrics={[
{
icon: Phone,
label: "Call Sal",
value: "631-620-2330",
},
{
icon: Phone,
label: "Call Rock",
value: "631-539-1664",
},
{
icon: Mail,
label: "Email",
value: "contact@a1roofmasters.com",
},
{ icon: Phone, label: "Call Sal", value: "631-620-2330" },
{ icon: Phone, label: "Call Rock", value: "631-539-1664" },
{ icon: Mail, label: "Email", value: "contact@a1roofmasters.com" },
]}
metricsAnimation="slide-up"
/>
@@ -81,38 +58,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Projects",
href: "/projects",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
items: [
{
label: "Sal: 631-620-2330",
href: "tel:631-620-2330",
},
{
label: "Rock: 631-539-1664",
href: "tel:631-539-1664",
},
{
label: "contact@a1roofmasters.com",
href: "mailto:contact@a1roofmasters.com",
},
],
},
{ items: [{ label: "Home", href: "/" }, { label: "Projects", href: "/projects" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "Sal: 631-620-2330", href: "tel:631-620-2330" }, { label: "Rock: 631-539-1664", href: "tel:631-539-1664" }, { label: "contact@a1roofmasters.com", href: "mailto:contact@a1roofmasters.com" }] },
]}
logoText="A1 Roofmasters"
/>
@@ -120,4 +67,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}