Files
menulio/apps/web/src/app/layout.tsx
T
2026-08-20 01:51:59 +03:00

17 lines
499 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}