| import type { Metadata } from "next"; | |
| import { Inter } from "next/font/google"; | |
| import "./globals.css"; | |
| const inter = Inter({ | |
| variable: "--font-inter", | |
| subsets: ["latin"], | |
| }); | |
| export const metadata: Metadata = { | |
| title: "ScanMenu β Digital Menus & QR Ordering for Restaurants", | |
| description: "Create stunning digital menus, generate QR codes, and let customers order instantly. The modern way to run your restaurant.", | |
| keywords: ["restaurant", "digital menu", "QR code", "online ordering", "SaaS"], | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="en" className={`${inter.variable} h-full antialiased`}> | |
| <body className="min-h-full flex flex-col font-sans">{children}</body> | |
| </html> | |
| ); | |
| } | |