diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9da6709..77126da 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}