47 lines
1.4 KiB
TypeScript
47 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: 'Harmony Heating & Cooling | Luxury HVAC Services Colorado',
|
|
description: 'Experience luxury home comfort with Colorado\'s trusted HVAC experts. Precision heating and cooling solutions installed with honesty and professional care.',
|
|
openGraph: {
|
|
"title": "Harmony Heating & Cooling | Luxury HVAC Services Colorado",
|
|
"description": "High-end heating, cooling, and furnace services in Westminster and beyond.",
|
|
"siteName": "Harmony Heating & Cooling",
|
|
"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>
|
|
);
|
|
}
|