72 lines
2.1 KiB
TypeScript
72 lines
2.1 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 { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Mulish } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'FloorCraft - Custom Flooring & Installation',
|
|
description: 'Family-owned FloorCraft delivers expert hardwood floor installation, sanding, and free estimates across Georgia, Florida, and more. Quality craftsmanship since 2012.',
|
|
openGraph: {
|
|
"title": "FloorCraft - Expert Flooring Solutions",
|
|
"description": "Family-owned FloorCraft provides top-tier hardwood installation, sanding, and free estimates. Quality and trust since 2012.",
|
|
"url": "/",
|
|
"siteName": "FloorCraft",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/boxes-packaged-moving-new-home_23-2149162242.jpg",
|
|
"alt": "Newly installed hardwood floor"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "FloorCraft - Expert Flooring Solutions",
|
|
"description": "Family-owned FloorCraft provides top-tier hardwood installation, sanding, and free estimates. Quality and trust since 2012.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/boxes-packaged-moving-new-home_23-2149162242.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const mulish = Mulish({
|
|
variable: "--font-mulish",
|
|
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={`${mulish.variable} ${inter.variable} antialiased`}>
|
|
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|