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() { /> - - - - -
- + -
- -
- -
- -
-
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