import type { Metadata } from "next"; import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "LuxeHair | Premium Natural Hair Color & Professional Coloring Systems", description: "Discover LuxeHair's luxury natural coloring systems and premium hair care products. 100% natural formulas and innovative capsule technology for salons and home use.", keywords: "natural hair color, premium hair care, coloring system, capsule technology, professional hair products, salon supplies", metadataBase: new URL("https://luxehair.com"), alternates: { canonical: "https://luxehair.com"}, openGraph: { title: "LuxeHair - Premium Natural Hair Care", description: "Luxury natural coloring systems and professional hair care products for stunning results.", siteName: "LuxeHair", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/woman-washing-head-hairsalon_1157-27181.jpg", alt: "LuxeHair Premium Products"}, ], }, twitter: { card: "summary_large_image", title: "LuxeHair - Premium Natural Hair Care", description: "Discover our innovative coloring systems and luxury hair products.", images: ["http://img.b2bpic.net/free-photo/woman-washing-head-hairsalon_1157-27181.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}