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} - -