11 Commits

Author SHA1 Message Date
ea582a3ab0 Merge version_4 into main
Merge version_4 into main
2026-04-19 13:59:29 +00:00
71c8cfc4c4 Update src/app/page.tsx 2026-04-19 13:59:23 +00:00
6223e76123 Add src/app/contact/page.tsx 2026-04-19 13:59:23 +00:00
596d32ffc3 Merge version_3 into main
Merge version_3 into main
2026-04-19 13:55:31 +00:00
b84ca7e2e3 Update src/app/page.tsx 2026-04-19 13:55:28 +00:00
0532d34dd5 Merge version_2 into main
Merge version_2 into main
2026-04-19 13:53:39 +00:00
a3c785a044 Update src/app/page.tsx 2026-04-19 13:53:37 +00:00
a50a109649 Merge version_1 into main
Merge version_1 into main
2026-04-19 13:51:20 +00:00
fe6d6c5898 Merge version_1 into main
Merge version_1 into main
2026-04-19 13:51:12 +00:00
234cc7f3e0 Merge version_1 into main
Merge version_1 into main
2026-04-19 13:50:48 +00:00
c9409ecdbd Merge version_1 into main
Merge version_1 into main
2026-04-19 13:50:18 +00:00
2 changed files with 66 additions and 19 deletions

58
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,58 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="largeSizeMediumTitles"
background="circleGradient"
cardStyle="solid"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Services", id: "/#services" },
{ name: "Expertise", id: "/#expertise" },
{ name: "Process", id: "/#process" },
{ name: "About", id: "/#about" },
{ name: "Contact", id: "/contact" }
]}
brandName="United Roofing"
button={{ text: "Get Inspection", href: "/contact" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Get in Touch"
title="Schedule Your Inspection"
description="Contact us for a free, no-pressure assessment of your property's roofing needs."
background={{ variant: "gradient-bars" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="United Roofing"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "© 2024 United Roofing", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -32,13 +32,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Services", id: "#services" },
{ name: "Expertise", id: "#expertise" },
{ name: "Process", id: "#process" },
{ name: "About", id: "#about" },
{ name: "Services", id: "/#services" },
{ name: "Expertise", id: "/#expertise" },
{ name: "Process", id: "/#process" },
{ name: "About", id: "/#about" },
{ name: "Contact", id: "/contact" }
]}
brandName="United Roofing"
button={{ text: "Get Inspection", href: "#contact" }}
button={{ text: "Get Inspection", href: "/contact" }}
/>
</div>
@@ -49,8 +50,8 @@ export default function LandingPage() {
description="Fast, honest roof repair and replacement with expert guidance, clear communication, and workmanship that holds up."
tag="Trusted by DC Homeowners"
buttons={[
{ text: "Get a Free Inspection", href: "#contact" },
{ text: "Call Now", href: "tel:5550101" },
{ text: "Get a Free Inspection", href: "/contact" },
{ text: "Call Now", href: "tel:+12025686865" },
]}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-with-helmet-sitting-roof_23-2149343664.jpg?_wi=1", imageAlt: "Urban rowhouse roofing" },
@@ -176,18 +177,6 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{ variant: "rotated-rays-animated" }}
text="Need Roofing Help Without the Runaround? Schedule a free inspection and get honest guidance, fast communication, and peace of mind."
buttons={[
{ text: "Book Free Inspection", href: "#" },
{ text: "Call United Roofing", href: "tel:5550101" },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="United Roofing"