From 9faf27db984d1105a00d16243446e2990d310a23 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:18:01 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 94e998b..5c31836 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Nunito } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Foodie - Premium Fine Dining Restaurant", description: "Experience exceptional farm-to-table cuisine at Foodie. Award-winning chefs, seasonal menus, and unforgettable dining moments. Reserve your table today.", keywords: "restaurant, fine dining, farm to table, chef, cuisine, reservations", openGraph: { - title: "Foodie - Premium Fine Dining", description: "Award-winning restaurant offering exceptional culinary experiences with fresh, seasonal ingredients.", siteName: "Foodie", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg", alt: "Foodie restaurant signature dish" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Foodie Restaurant", description: "Experience premium farm-to-table dining", images: ["http://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg"] - } -}; + title: "Foodie - Premium Restaurant", description: "Discover culinary excellence at Foodie, where fresh ingredients meet innovative cooking techniques."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}