Files
15b1b1f3-4ed2-4432-ba6d-283…/src/app/layout.tsx
2026-04-16 17:47:25 +00:00

55 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 { Open_Sans } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Inter_Tight } from "next/font/google";
export const metadata: Metadata = {
title: 'DSkinner Painter and Decorator | Dundee',
description: 'High-quality, reliable painting and decorating services for homes and businesses in Dundee.',
openGraph: {
"title": "DSkinner Painter and Decorator",
"description": "Professional Painting & Decorating Services You Can Trust.",
"siteName": "DSkinner Painter and Decorator",
"type": "website"
},
};
const interTight = Inter_Tight({
variable: "--font-inter-tight",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}