Update src/app/layout.tsx

This commit is contained in:
2026-02-28 07:21:56 +00:00
parent d6f69a3f17
commit 87315ea325

View File

@@ -1,13 +1,15 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Baan Mu - Authentic Thai Cuisine", description: "Experience the bold flavors and aromatic spices of traditional Thai cooking in an elegant setting."};
title: "Baan Mu - Authentic Thai Cuisine", description: "Experience authentic Thai cuisine at Baan Mu in San Francisco"};
export default function RootLayout({
children,
@@ -16,9 +18,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.variable}>
{children}
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1388,4 +1388,4 @@ export default function RootLayout({
</body>
</html>
);
}
}