74 lines
2.6 KiB
TypeScript
74 lines
2.6 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 { Public_Sans } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'M.D.M Roofing LTD. | Premium & Luxury Roofing Specialists',
|
|
description: 'M.D.M Roofing LTD. offers high-end residential and commercial roofing solutions with meticulous craftsmanship, industry-leading warranties, and luxury service. Your roof, our masterpiece.',
|
|
keywords: ["luxury roofing, premium roofing, commercial roofing, residential roofing, roofing specialists, high-end roofs, MDM Roofing, quality craftsmanship, roof installation, roof repair, North America roofing"],
|
|
openGraph: {
|
|
"title": "MDM Roofing LTD | Premium & Luxury Roofing Specialists",
|
|
"description": "MDM Roofing LTD offers high-end residential and commercial roofing solutions with meticulous craftsmanship, industry-leading warranties, and luxury service. Your roof, our masterpiece.",
|
|
"url": "https://www.mdmroofing.com",
|
|
"siteName": "MDM Roofing LTD",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/concrete-building_1127-2031.jpg",
|
|
"alt": "Luxurious home with newly installed premium roof"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "MDM Roofing LTD | Premium & Luxury Roofing Specialists",
|
|
"description": "MDM Roofing LTD offers high-end residential and commercial roofing solutions with meticulous craftsmanship, industry-leading warranties, and luxury service. Your roof, our masterpiece.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/concrete-building_1127-2031.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const publicSans = Public_Sans({
|
|
variable: "--font-public-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
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={`${publicSans.variable} ${inter.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|