From 97bb54387b3a05f515cdb58bccc78716e04a9fc4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:09:10 +0000 Subject: [PATCH 1/2] Update src/app/about/page.tsx --- src/app/about/page.tsx | 102 +++++++---------------------------------- 1 file changed, 16 insertions(+), 86 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 58679c5..f6ad82c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -46,19 +46,11 @@ export default function AboutPage() { tag="Our Story" negativeCard={{ items: [ - "Started recently with no track record", - "Limited experience in industry", - "No customer testimonials", - "Unclear qualifications", - ], + "Started recently with no track record", "Limited experience in industry", "No customer testimonials", "Unclear qualifications"], }} positiveCard={{ items: [ - "15+ years of proven expertise", - "Thousands of satisfied customers", - "Certified and licensed technicians", - "Industry-leading reputation", - ], + "15+ years of proven expertise", "Thousands of satisfied customers", "Certified and licensed technicians", "Industry-leading reputation"], }} animationType="slide-up" textboxLayout="default" @@ -66,83 +58,21 @@ export default function AboutPage() { /> - - - - -
- + -
- -
- -
- -
-
-- 2.49.1 From b4399daa086271da1b8b0f4ffb29cd44d2accfb3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:09:11 +0000 Subject: [PATCH 2/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 88 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..18618b0 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,88 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import Link from "next/link"; + +export default function ContactPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Request Quote", id: "/quote" }, + ]; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1