Files
0ed2f4e8-e2b8-46ee-8556-aaa…/src/app/layout.tsx
2026-04-04 22:38:37 +00:00

50 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 Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google";
export const metadata: Metadata = {
title: 'High Rise Roofing | Luxury Roofing Solutions',
description: 'High Rise Roofing provides expert roofing installations, repairs, and structural inspections with a focus on luxury, precision, and long-term durability.',
openGraph: {
"title": "High Rise Roofing | Luxury Roofing",
"description": "Premium roofing solutions, structural expertise, and honest craftsmanship for high-end properties.",
"siteName": "High Rise Roofing",
"type": "website"
},
};
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}