diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..268b8d9
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,36 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
+import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..2867e70
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,37 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import ContactCenter from '@/components/sections/contact/ContactCenter';
+import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
+
+export default function ContactPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 07ac5e2..db60182 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -31,22 +31,13 @@ export default function LandingPage() {
@@ -54,52 +45,20 @@ export default function LandingPage() {
@@ -110,36 +69,12 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
- {
- icon: Wrench,
- title: "General Plumbing",
- description: "Expert repairs and installations for all household fixtures.",
- },
- {
- icon: Zap,
- title: "Tankless Heaters",
- description: "High-efficiency tankless water heater installation and maintenance.",
- },
- {
- icon: Droplets,
- title: "Water Filtration",
- description: "Premium whole-home water filtration and softening systems.",
- },
- {
- icon: AlertTriangle,
- title: "Emergency Care",
- description: "24/7 responsive emergency plumbing callout services.",
- },
- {
- icon: Trash2,
- title: "Drain Cleaning",
- description: "Effective solutions for clogged pipes and drainage systems.",
- },
- {
- icon: Droplets,
- title: "Water Testing",
- description: "Comprehensive testing for home water quality.",
- },
+ { icon: Wrench, title: "General Plumbing", description: "Expert repairs and installations for all household fixtures." },
+ { icon: Zap, title: "Tankless Heaters", description: "High-efficiency tankless water heater installation and maintenance." },
+ { icon: Droplets, title: "Water Filtration", description: "Premium whole-home water filtration and softening systems." },
+ { icon: AlertTriangle, title: "Emergency Care", description: "24/7 responsive emergency plumbing callout services." },
+ { icon: Trash2, title: "Drain Cleaning", description: "Effective solutions for clogged pipes and drainage systems." },
+ { icon: Droplets, title: "Water Testing", description: "Comprehensive testing for home water quality." },
]}
title="Our Expert Services"
description="Comprehensive water and plumbing solutions designed for your needs."
@@ -150,22 +85,10 @@ export default function LandingPage() {
@@ -175,57 +98,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
plans={[
- {
- id: "p1",
- badge: "Popular",
- price: "$99",
- subtitle: "Service Call Fee",
- buttons: [
- {
- text: "Book Now",
- href: "#contact",
- },
- ],
- features: [
- "Diagnostic visit",
- "Repair assessment",
- "Free estimate",
- ],
- },
- {
- id: "p2",
- badge: "Value",
- price: "$199",
- subtitle: "Drain Clearing",
- buttons: [
- {
- text: "Book Now",
- href: "#contact",
- },
- ],
- features: [
- "Standard drain cleaning",
- "Pipe health check",
- "Free advice",
- ],
- },
- {
- id: "p3",
- badge: "Pro",
- price: "Custom",
- subtitle: "Tankless Install",
- buttons: [
- {
- text: "Quote Now",
- href: "#contact",
- },
- ],
- features: [
- "Unit installation",
- "System testing",
- "Long-term warranty",
- ],
- },
+ { id: "p1", badge: "Popular", price: "$99", subtitle: "Service Call Fee", buttons: [{ text: "Book Now", href: "#contact" }], features: ["Diagnostic visit", "Repair assessment", "Free estimate"] },
+ { id: "p2", badge: "Value", price: "$199", subtitle: "Drain Clearing", buttons: [{ text: "Book Now", href: "#contact" }], features: ["Standard drain cleaning", "Pipe health check", "Free advice"] },
+ { id: "p3", badge: "Pro", price: "Custom", subtitle: "Tankless Install", buttons: [{ text: "Quote Now", href: "#contact" }], features: ["Unit installation", "System testing", "Long-term warranty"] },
]}
title="Service Options"
description="Straightforward pricing for reliable plumbing services."
@@ -236,31 +111,11 @@ export default function LandingPage() {