Update src/app/contact/page.tsx

This commit is contained in:
2026-04-28 02:10:44 +00:00
parent 38532d8f26
commit 9a2c1d2f8d

View File

@@ -2,151 +2,70 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Pinnacle A Roofing"
/>
</div>
<div id="contact-content" data-section="contact-content">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "radial-gradient",
}}
tag="Contact Us"
title="Ready to Start Your Project?"
description="Contact our team at (305) 672-7464 or schedule your free roofing consultation today."
buttons={[
{
text: "Get Free Estimate",
href: "/contact",
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Contact"
title="Get in touch"
description="Reach out anytime"
/>
</div>
<div id="metric" data-section="metric">
<MetricCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Hours"
description="Open daily"
metrics={[
{
id: "1",
value: "24/7",
description: "Availability",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/many-metal-kegs-beer_1398-2532.jpg?_wi=4"
logoText="Pinnacle A Roofing"
columns={[
{
title: "Navigation",
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Resources",
items: [
{
label: "Emergency Repair",
href: "#",
},
{
label: "Maintenance",
href: "#",
},
{
label: "Certifications",
href: "#",
},
],
},
{
title: "Contact",
items: [
{
label: "3712 NW 71st St, Miami, FL",
href: "#",
},
{
label: "(305) 672-7464",
href: "tel:+13056727464",
},
],
},
]}
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Services", id: "/services" }, { name: "Contact", id: "/contact" }]}
brandName="Pinnacle A Roofing"
/>
</div>
<div id="contact-content" data-section="contact-content">
<ContactCTA
tag="Contact Us"
title="Ready to Start Your Project?"
description="Contact our team at (305) 672-7464 or schedule your free roofing consultation today."
buttons={[{ text: "Get Free Estimate", href: "/contact" }]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Contact"
title="Get in touch"
description="Reach out anytime"
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="metric" data-section="metric">
<MetricCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Hours"
description="Open daily"
metrics={[{ id: "1", value: "24/7", description: "Availability" }, { id: "2", value: "M-F", description: "Support" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/many-metal-kegs-beer_1398-2532.jpg"
logoText="Pinnacle A Roofing"
columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] }, { title: "Resources", items: [{ label: "Emergency Repair", href: "#" }, { label: "Maintenance", href: "#" }, { label: "Certifications", href: "#" }] }, { title: "Contact", items: [{ label: "3712 NW 71st St, Miami, FL", href: "#" }, { label: "(305) 672-7464", href: "tel:+13056727464" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);