From aed9816e574f5ec1fbbb90dd129ed2579d0e963e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 00:10:10 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 95 +++++++++++++++--------------------------- 1 file changed, 33 insertions(+), 62 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 40b9924..f79b54b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,9 +3,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import SplitAbout from "@/components/sections/about/SplitAbout"; -import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; +import AboutMetric from "@/components/sections/about/AboutMetric"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Info, CheckCircle, Clock, Users, DollarSign, Lightbulb, Heart, Zap } from "lucide-react"; +import { Award, TrendingUp, Users, Shield } from "lucide-react"; export default function AboutPage() { const navItems = [ @@ -33,87 +33,58 @@ export default function AboutPage() { -
+
-
- +
@@ -126,4 +97,4 @@ export default function AboutPage() {
); -} \ No newline at end of file +} -- 2.49.1 From f9fb60b6ff4ff192c07ecf0ee59ba1b2bdad121f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 00:10:11 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 69 ++++++++++++---------------------------- 1 file changed, 21 insertions(+), 48 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 14ba77f..7288f58 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,23 +3,19 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; -import SplitAbout from "@/components/sections/about/SplitAbout"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Phone, Mail, MapPin, Clock } from "lucide-react"; +import { Phone, MapPin, Clock } from "lucide-react"; export default function ContactPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "About", id: "/about" }, - { name: "Reviews", id: "/contact" }, + { name: "Reviews", id: "/" }, { name: "Contact", id: "/contact" }, ]; - const handleContactSubmit = (data: Record) => { - console.log("Contact form submitted:", data); - }; - return (
-
@@ -112,4 +85,4 @@ export default function ContactPage() {
); -} \ No newline at end of file +} -- 2.49.1 From 34d3c84c12857f9dc0327eaf28f85707eb0bc979 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 00:10:11 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 59 +++++++++------------------------------------- 1 file changed, 11 insertions(+), 48 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 468bf7f..6522f86 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,62 +1,26 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Escalus Fairfield Plumbing | 24/7 Emergency Plumbing Services CT", - description: "Professional 24/7 emergency plumbing services in Fairfield, Connecticut. Licensed, insured plumbers. Same-day service. 5-star customer satisfaction. Call now!", - keywords: "plumber Fairfield CT, emergency plumbing, drain cleaning, water heater repair, 24/7 plumbing service", - openGraph: { - title: "Escalus Fairfield Plumbing | 24/7 Emergency Services", - description: "Professional plumbing solutions for Fairfield, Connecticut. Same-day emergency service available.", - siteName: "Escalus Fairfield Plumbing", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Escalus Fairfield Plumbing | 24/7 Emergency Services", - description: "Professional plumbing services in Fairfield, CT. Emergency repairs, maintenance, and installation.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Escalus Fairfield Plumbing - 24/7 Emergency Plumbing Services", description: "Professional plumbing services in Fairfield, CT. 24/7 emergency repairs, drain cleaning, water heater services, and more. Licensed, insured, and 5-star rated."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +