47 lines
1.5 KiB
TypeScript
47 lines
1.5 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 { Cormorant_Garamond, DM_Sans } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Stonewood Landscaping | Ottawa Snow Removal & Lawn Care',
|
|
description: 'Ottawa\'s trusted landscaping and snow removal service. Seasonal contracts, same-day emergency response, fully insured. Get a free estimate today.',
|
|
openGraph: {
|
|
"title": "Stonewood Landscaping | Ottawa Snow Removal & Lawn Care",
|
|
"description": "Ottawa's trusted landscaping and snow removal service.",
|
|
"siteName": "Stonewood Landscaping"
|
|
},
|
|
};
|
|
|
|
const cormorant = Cormorant_Garamond({ variable: "--font-cormorant", subsets: ["latin"], weight: ["400", "700"] });
|
|
const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"] });
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${cormorant.variable} ${dmSans.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|