Files
742ca6a4-1b21-4d2f-bf4f-dc0…/src/app/layout.tsx
2026-04-06 21:14:21 +00:00

51 lines
1.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 { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google";
import { Roboto } from "next/font/google";
export const metadata: Metadata = {
title: 'J&R Auto Body | Precision Repairs & Street-Level Speed',
description: 'Lafayette\'s premier auto body shop. Precision repairs, fast turnaround, honest pricing. Specializing in collision, paint, and performance auto bodywork.',
openGraph: {
"title": "J&R Auto Body Lafayette",
"description": "Precision auto body repair in Lafayette, IN. Fast, reliable, professional.",
"siteName": "J&R Auto Body"
},
};
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}