Add src/app/cleveland-oh/page.tsx
This commit is contained in:
35
src/app/cleveland-oh/page.tsx
Normal file
35
src/app/cleveland-oh/page.tsx
Normal file
@@ -0,0 +1,35 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function ClevelandPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Cleveland", id: "/cleveland-oh" },
|
||||
{ name: "Denver", id: "/denver-co" },
|
||||
{ name: "Detroit", id: "/detroit-mi" }
|
||||
]}
|
||||
brandName="BlueDropFix"
|
||||
button={{ text: "Call Now", href: "tel:5550199" }}
|
||||
/>
|
||||
<HeroLogoBillboard
|
||||
logoText="BlueDropFix Cleveland"
|
||||
description="Expert emergency water leak detection and repair in Cleveland, OH. Serving Shaker Heights, Lakewood, and Downtown. 24/7 rapid response."
|
||||
buttons={[{ text: "Schedule Repair", href: "#" }]}
|
||||
/>
|
||||
<FooterBase
|
||||
columns={[]}
|
||||
logoText="BlueDropFix"
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user