Files
603dff61-97a9-43dd-9326-e6b…/src/app/layout.tsx
2026-06-13 01:21:23 +00:00

71 lines
2.3 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 { Inter_Tight } from "next/font/google";
export const metadata: Metadata = {
title: 'GRM Flooring LLC | Discover Unrivaled Elegance for Your Home',
description: 'Transform your space with GRM Flooring LLC\'s bespoke hardwood, laminate, LVP, and carpet solutions in Eden Prairie, MN. Request a free quote today for lasting beauty.',
keywords: ["flooring, hardwood, laminate, carpet, LVP, vinyl plank, installation, contractor, Eden Prairie, Minnesota, GRM Flooring"],
openGraph: {
"title": "GRM Flooring LLC | Premium Flooring Solutions",
"description": "Your trusted local flooring contractor in Eden Prairie, MN, specializing in high-quality hardwood, laminate, and carpet installations.",
"url": "https://www.grmflooring.com",
"siteName": "GRM Flooring LLC",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/modern-empty-room_23-2150528549.jpg",
"alt": "Luxurious dark hardwood floor"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "GRM Flooring LLC | Expert Flooring Services",
"description": "Transform your space with GRM Flooring LLC in Eden Prairie, MN. Quality flooring installations for residential and commercial clients.",
"images": [
"http://img.b2bpic.net/free-photo/modern-empty-room_23-2150528549.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
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>
);
}