File size: 792 Bytes
e1ef9fc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 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>
);
}
|