From a4211989bb6b41dbd41674b09e00e8c12e9a02dd Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 16:42:45 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 68 ++++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 38 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4302db8..d1bf5b9 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,11 +1,10 @@ "use client"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { Sparkles } from 'lucide-react'; -import Link from 'next/link'; +import { Sparkles, Phone } from "lucide-react"; export default function ContactPage() { const navItems = [ @@ -18,27 +17,24 @@ export default function ContactPage() { const footerColumns = [ { - title: "Services", - items: [ - { label: "Custom Decks", href: "/services" }, - { label: "Siding Installation", href: "/services" }, - { label: "Windows & Doors", href: "/services" }, - { label: "Exterior Remodels", href: "/services" }, + title: "Services", items: [ + { label: "Custom Decks", href: "/" }, + { label: "Siding Installation", href: "/" }, + { label: "Windows & Doors", href: "/" }, + { label: "Exterior Remodels", href: "/" }, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Our Process", href: "/" }, - { label: "Portfolio", href: "/portfolio" }, - { label: "Contact", href: "/contact" }, + { label: "Our Process", href: "#process" }, + { label: "Portfolio", href: "#portfolio" }, + { label: "Contact", href: "#cta" }, ], }, { - title: "Connect", - items: [ - { label: "Phone: (630) 555-0123", href: "tel:(630)555-0123" }, + title: "Connect", items: [ + { label: "Phone: (630) 904-1537", href: "tel:(630)904-1537" }, { label: "Naperville, IL", href: "#" }, { label: "Instagram", href: "https://instagram.com" }, { label: "Privacy Policy", href: "#" }, @@ -64,40 +60,36 @@ export default function ContactPage() { brandName="Designed Companies" navItems={navItems} button={{ - text: "Start Your Project", - href: "/contact", - }} + text: "Start Your Project", href: "#cta"}} /> -
- +
); -} \ No newline at end of file +} -- 2.49.1 From 198c9ae762cc066d3ce550044123b86bdadc7898 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 16:42:45 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f4c788d..77ee05c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -40,7 +40,7 @@ export default function HomePage() { }, { title: "Connect", items: [ - { label: "Phone: (630) 555-0123", href: "tel:(630)555-0123" }, + { label: "Phone: (630) 904-1537", href: "tel:(630)904-1537" }, { label: "Naperville, IL", href: "#" }, { label: "Instagram", href: "https://instagram.com" }, { label: "Privacy Policy", href: "#" }, -- 2.49.1