|
|
|
|
@@ -1,59 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Figtree } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
const figtree = Figtree({
|
|
|
|
|
variable: "--font-figtree",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Premium Solid Wood Flooring | Heritage Wood",
|
|
|
|
|
description: "Discover luxury solid wood flooring combining 140 years of family craftsmanship with modern technology. FSC-certified, sustainable, and beautifully handcrafted.",
|
|
|
|
|
keywords: "solid wood flooring, premium wood floors, oak flooring, sustainable flooring, FSC certified",
|
|
|
|
|
metadataBase: new URL("https://heritagewooflooring.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://heritagewooflooring.com",
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Heritage Wood - Premium Solid Wood Flooring",
|
|
|
|
|
description: "Luxury solid wood flooring with 140 years of family heritage. Sustainable, handcrafted, and built to endure.",
|
|
|
|
|
url: "https://heritagewooflooring.com",
|
|
|
|
|
siteName: "Heritage Wood",
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/couch-armchair-seen-from-floor_1203-737.jpg",
|
|
|
|
|
alt: "Premium solid wood flooring in elegant interior",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
type: "website",
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image",
|
|
|
|
|
title: "Heritage Wood - Premium Solid Wood Flooring",
|
|
|
|
|
description: "Luxury solid wood flooring with 140 years of family heritage and sustainable practices.",
|
|
|
|
|
images: ["http://img.b2bpic.net/free-photo/couch-armchair-seen-from-floor_1203-737.jpg"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Heritage Wood Flooring | Premium Solid Wood Since 1992", description: "Discover heritage craftsmanship meets modern innovation in premium solid wood flooring. 140 years of family mastery, FSC-certified sustainability, and timeless beauty."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body className={`${figtree.variable} antialiased`}>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1421,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|