From dabc2fa2c4828d961730d3e9271473569691b5f4 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:47:49 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1387 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1387 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..a23fc71 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1387 @@ +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./globals.css"; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata: Metadata = { + title: "Shangri-La - Restaurant Asiatique Authentique", description: "Découvrez Shangri-La, un restaurant asiatique authentique offrant une cuisine raffinée et faite maison. Réservez votre table dès maintenant."}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} +