5 Commits

Author SHA1 Message Date
c2fd34a339 Update src/app/page.tsx 2026-03-03 21:13:30 +00:00
3ed11bbe60 Update src/app/layout.tsx 2026-03-03 21:13:29 +00:00
a59d2636a8 Merge version_1 into main
Merge version_1 into main
2026-03-03 21:10:45 +00:00
aecbf4f513 Merge version_1 into main
Merge version_1 into main
2026-03-03 21:01:46 +00:00
645143b20d Merge version_1 into main
Merge version_1 into main
2026-03-03 20:52:01 +00:00
2 changed files with 11 additions and 51 deletions

View File

@@ -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>
); );
} }

View File

@@ -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}