import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Providers } from "@/providers/Providers";
import "./globals.css";

const inter = Inter({
  variable: "--font-sans",
  subsets: ["latin"],
  display: "swap",
});

export const metadata: Metadata = {
  title: "Lezzet Sarayı | QR Menü",
  description: "AI Garson destekli dijital QR menü sistemi. Menüyü keşfedin, AI Garson'dan öneriler alın ve kolayca sipariş verin.",
  keywords: "QR menü, dijital menü, restoran, AI garson, sipariş",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="tr" className={`${inter.variable} h-full antialiased dark`}>
      <body className="min-h-full flex flex-col">
        <Providers>
          {children}
        </Providers>
      </body>
    </html>
  );
}
