Files
2026-05-16 22:13:33 +00:00

45 lines
1.3 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 { Mulish } from "next/font/google";
export const metadata: Metadata = {
title: 'Clearview Plumbing & Sewer, Inc. | Berwyn, IL',
description: 'Need a plumber in Berwyn, IL? Clearview Plumbing & Sewer provides 24/7 emergency plumbing, drain cleaning, and repair services. Reliable and professional.',
keywords: ["plumber Berwyn IL, drain cleaning Berwyn, emergency plumbing service, Clearview Plumbing, local plumber"],
};
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}