17 lines
499 B
TypeScript
17 lines
499 B
TypeScript
import type { Metadata } from "next";
|
||
import type { ReactNode } from "react";
|
||
import "./globals.css";
|
||
|
||
export const metadata: Metadata = {
|
||
title: "Menulio | AI Destekli Yeni Nesil QR Menü",
|
||
description: "Restoranınız için yapay zeka destekli, modern dijital QR menü platformu.",
|
||
};
|
||
|
||
export default function RootLayout({ children }: { children: ReactNode }) {
|
||
return (
|
||
<html lang="tr" suppressHydrationWarning>
|
||
<body suppressHydrationWarning>{children}</body>
|
||
</html>
|
||
);
|
||
}
|