From db0b78eb5fa81b0e7be8286ee067d81439318417 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 20:59:36 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1405 +------------------------------------------- 1 file changed, 6 insertions(+), 1399 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2e69381..230227d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1412 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Tofu & Thai - Authentic Asian Cuisine", description: "Experience authentic Thai flavors and innovative tofu dishes at Tofu & Thai restaurant. Fresh ingredients, traditional recipes, and unforgettable dining.", keywords: "Thai restaurant, tofu dishes, Asian cuisine, Thai food, authentic recipes, vegetarian options", openGraph: { - title: "Tofu & Thai - Authentic Asian Cuisine", description: "Experience authentic Thai flavors and innovative tofu dishes", type: "website", siteName: "Tofu & Thai"}, - twitter: { - card: "summary_large_image", title: "Tofu & Thai - Authentic Asian Cuisine", description: "Experience authentic Thai flavors and innovative tofu dishes"}, -}; + title: "Tofu & Thai - Authentic Asian Cuisine", description: "Experience authentic Thai flavors and innovative tofu creations at Tofu & Thai restaurant."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -