Update src/app/layout.tsx

This commit is contained in:
2026-03-07 17:45:02 +00:00
parent 00e1749ccf
commit a12a31923e

View File

@@ -1,10 +1,9 @@
import type { Metadata } from "next";
import { GeistSans } from "geist/font/sans";
import { GeistMono } from "geist/font/mono";
import "./globals.css";
export const metadata: Metadata = {
title: "The Cherry Tree Cafe - Lucknow's Favorite Café", description: "Serving fresh coffee, delicious pasta, pizzas and desserts in the heart of Hazratganj. Join us for an unforgettable café experience."};
title: "The Cherry Tree Cafe - Lucknow's Favorite Café", description: "Serving fresh coffee, delicious pasta, pizzas and desserts in the heart of Hazratganj. Join us for an unforgettable café experience."
};
export default function RootLayout({
children,
@@ -13,7 +12,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={`${GeistSans.variable} ${GeistMono.variable}`}>
<body>
{children}
<script