Files
01d2b33e-0145-4a8b-af70-98d…/src/app/layout.tsx
2026-06-07 16:07:02 +00:00

70 lines
2.4 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
export const metadata: Metadata = {
title: 'Rock Island Auto Repair & Service | 1901 4th Ave Rock Island, IL 61201',
description: 'Expert auto repair and maintenance services in Rock Island, IL. Fast, reliable, and professional solutions for cars, trucks, and SUVs. Call Rock Island Auto Repair today!',
keywords: ["plumbing, plumber, drain cleaning, water heater, pipe repair, emergency plumbing, Davenport IA, Quad Cities"],
openGraph: {
"title": "Lenny's Plumbing & Drain Cleaning | Davenport, IA",
"description": "Expert plumbing and drain cleaning services in Davenport, IA. Fast, reliable, and professional solutions for homes and businesses.",
"url": "https://www.lennysplumbing.com",
"siteName": "Lenny's Plumbing",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/water-tap-prevention-concentrated-man-leaning-water-faucet-touching-spout-pipe_259150-58276.jpg",
"alt": "Plumber working on a pipe"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "Lenny's Plumbing & Drain Cleaning | Davenport, IA",
"description": "Expert plumbing and drain cleaning services in Davenport, IA. Fast, reliable, and professional solutions for homes and businesses.",
"images": [
"http://img.b2bpic.net/free-photo/water-tap-prevention-concentrated-man-leaning-water-faucet-touching-spout-pipe_259150-58276.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}