import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Montserrat } 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"], }); const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); export const metadata: Metadata = { title: "Luxe Premium - Elevate Your Lifestyle", description: "Experience the epitome of luxury and sophistication. Discover handcrafted, premium collections designed for the discerning few.", keywords: "luxury, premium, lifestyle, elegance, sophisticated, handcrafted, exclusive", robots: { index: true, follow: true, }, openGraph: { title: "Luxe Premium - Elevate Your Lifestyle", description: "Experience the epitome of luxury and sophistication. Discover handcrafted, premium collections designed for the discerning few.", type: "website", siteName: "Luxe Premium", images: [ { url: "http://img.b2bpic.net/free-photo/collection-quail-eggs-near-feathers-can_23-2148073846.jpg", alt: "Luxe Premium Experience"}, ], }, twitter: { card: "summary_large_image", title: "Luxe Premium - Elevate Your Lifestyle", description: "Experience luxury redefined with our exclusive collections.", images: ["http://img.b2bpic.net/free-photo/collection-quail-eggs-near-feathers-can_23-2148073846.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}