import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "Luna Cocktail & More | Menü", description: "Luna Cocktail and More - Özel kokteyllerimiz, şaraplarımız ve daha fazlası. QR menü ile keşfedin.", keywords: "cocktail, kokteyl, bar, menü, luna, drinks", openGraph: { title: "Luna Cocktail & More | Menü", description: "Özel kokteyllerimiz, şaraplarımız ve daha fazlası.", type: "website", }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children} ); }