48 lines
1.3 KiB
TypeScript
48 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 { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Nunito_Sans } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Brookside Barbers | Upscale Barber Shop in Coral Springs',
|
|
description: 'Visit Brookside Barbers in Brookside Square for professional, upscale grooming. Excellent service, kid-friendly, and a premium, clean environment.',
|
|
openGraph: {
|
|
"title": "Brookside Barbers",
|
|
"description": "Professional Barber Shop in Coral Springs",
|
|
"siteName": "Brookside Barbers"
|
|
},
|
|
};
|
|
|
|
const nunitoSans = Nunito_Sans({
|
|
variable: "--font-nunito-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${nunitoSans.variable} antialiased`}>
|
|
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|