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() { @@ -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() {