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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Nunito_Sans } from "next/font/google"; export const metadata: Metadata = { title: 'Chi Le Ma - Restaurant Asiatique Carouge | Cuisine Fusion', description: 'Découvrez Chi Le Ma, restaurant asiatique à Carouge. Cuisine fusion chinoise, japonaise et vietnamienne. Réservez votre table dès maintenant. 8.6/10 - 308 avis.', }; const nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}