import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Premium Carpet & Hardwood Flooring Installation | Carpet Exchange", description: "Expert flooring installation with luxury carpet, hardwood, and stair runners. Trusted by homeowners for professional service, honest recommendations, and flawless installation.", keywords: "carpet installation, hardwood flooring, stair runners, luxury carpet, professional installation, flooring contractor", metadataBase: new URL("https://carpetexchange.com"), alternates: { canonical: "https://carpetexchange.com", }, openGraph: { title: "Carpet Exchange - Luxury Flooring Installation", description: "Transform your home with premium carpet and hardwood flooring. Expert guidance, professional installation, honest service.", url: "https://carpetexchange.com", siteName: "Carpet Exchange", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-living-room_1203-2722.jpg", alt: "Luxury home interior with premium carpet", }, ], }, twitter: { card: "summary_large_image", title: "Premium Carpet & Flooring Installation | Carpet Exchange", description: "Expert flooring solutions with luxury carpet, hardwood, and professional installation.", images: [ "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-living-room_1203-2722.jpg", ], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}