first commit

This commit is contained in:
AyrisAI
2026-08-20 01:51:59 +03:00
commit 97b83c7fd4
109 changed files with 21215 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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>
);
}