Files
d9c07593-97b3-4e20-a9fb-7d9…/src/app/layout.tsx

74 lines
2.7 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";
import { DM_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'Lake Construction & Design LLC | Expert Roofing Contractor Kirkland WA',
description: 'Lake Construction & Design LLC offers professional roof replacement, repair, and gutter installation in Kirkland, Renton, and Seattle, WA. 5-star rated, licensed, and insured local PNW experts.',
keywords: ["roofing contractor Kirkland WA, roof replacement Seattle, roof repair Renton, gutter installation Bellevue, Lake Construction & Design, PNW roofing"],
openGraph: {
"title": "Lake Construction & Design LLC | Expert Roofing Contractor Kirkland WA",
"description": "Lake Construction & Design LLC offers professional roof replacement, repair, and gutter installation in Kirkland, Renton, and Seattle, WA. 5-star rated, licensed, and insured local PNW experts.",
"url": "https://lakeconstructiondesign.com",
"siteName": "Lake Construction & Design LLC",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/beautiful-clouds-scenery_23-2151604605.jpg",
"alt": "Dramatic roofing photo with Lake Construction & Design LLC branding"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "Lake Construction & Design LLC | Expert Roofing Contractor Kirkland WA",
"description": "Lake Construction & Design LLC offers professional roof replacement, repair, and gutter installation in Kirkland, Renton, and Seattle, WA. 5-star rated, licensed, and insured local PNW experts.",
"images": [
"http://img.b2bpic.net/free-photo/beautiful-clouds-scenery_23-2151604605.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const dmSans = DM_Sans({
variable: "--font-dm-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={`${dmSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}