Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c2fd34a339 | |||
| 3ed11bbe60 | |||
| a59d2636a8 | |||
| aecbf4f513 | |||
| 645143b20d |
@@ -1,59 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Figtree } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const figtree = Figtree({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-figtree",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Premium Solid Wood Flooring | Heritage Wood",
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body className={`${figtree.variable} antialiased`}>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1421,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -79,7 +79,7 @@ export default function HomePage() {
|
|||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-senior-businessman-with-arms-crossed_1262-1751.jpg"},
|
imageSrc: "http://img.b2bpic.net/free-photo/closeup-senior-businessman-with-arms-crossed_1262-1751.jpg"},
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View Products", href: "/products" },
|
{ text: "Get Your Sample", href: "/products" },
|
||||||
{ text: "Contact Us", href: "/contact" },
|
{ text: "Contact Us", href: "/contact" },
|
||||||
]}
|
]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
|||||||
Reference in New Issue
Block a user