import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Public_Sans } 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 publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Platinum Unisex - Hair & Beauty Salon in Palermo, Buenos Aires", description: "Premium beauty salon in Palermo offering hair cuts, styling, manicures, pedicures, and beauty treatments. 5-star rated. Book your appointment today. +54 11 4826-8849", keywords: "hair salon Buenos Aires, peluquerĂ­a Palermo, manicure pedicure, beauty salon Bulnes, hairdresser Argentina", openGraph: { title: "Platinum Unisex - Premium Beauty Salon in Palermo", description: "Award-winning beauty salon in Buenos Aires. Expert hair styling, manicures, pedicures & beauty treatments. Book now.", siteName: "Platinum Unisex", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/beautiful-luxury-chair-table-decoration-livingroom-interior-background_1339-4784.jpg", alt: "Platinum Unisex Salon" } ] }, twitter: { card: "summary_large_image", title: "Platinum Unisex - Beauty Salon Buenos Aires", description: "Premium hair, manicure, pedicure & beauty services in Palermo. 5-star reviews.", images: ["http://img.b2bpic.net/free-photo/beautiful-luxury-chair-table-decoration-livingroom-interior-background_1339-4784.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}