Files
ad0ea760-d257-482f-b232-474…/src/app/layout.tsx
2026-03-31 18:35:08 +00:00

62 lines
1.8 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 { Libre_Baskerville } from "next/font/google";
export const metadata: Metadata = {
title: 'Mammoth Restoration — 24/7 Emergency Restoration & Construction | Kingman AZ',
description: 'Emergency restoration and construction in Kingman, AZ. 24/7 water, mold, fire, roofing, and full rebuild services. Call (928) 714-0050 for immediate response.',
openGraph: {
"title": "Mammoth Restoration — 24/7 Water Damage & Construction",
"description": "Emergency restoration specialists serving Kingman, AZ. 24/7 rapid response for water, fire, and mold damage.",
"siteName": "Mammoth Restoration",
"type": "website"
},
twitter: {
"card": "summary_large_image"
},
robots: {
"index": true,
"follow": true
},
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}