ScanMenu / src /app /layout.tsx
HamzaAri's picture
πŸš€ Deploy ScanMenu - Production-ready SaaS web app for digital restaurant menus & QR ordering
e1ef9fc verified
raw
history blame contribute delete
792 Bytes
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>
);
}