From 405115fe4ab4fe17ebfe8e15f2a174df4b75e622 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:06:39 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1410 +------------------------------------------- 1 file changed, 6 insertions(+), 1404 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fbf4177..52ef372 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1417 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Garwood Grill - Premium Grilled Cuisine & Fine Dining", description: "Experience exceptional grilled steaks, fresh seafood, and craft cocktails at Garwood Grill. Award-winning restaurant with reservations available.", keywords: "grilled steak restaurant, fine dining, wood-fired grill, seafood grill, upscale restaurant", metadataBase: new URL("https://garwoodgrill.com"), - openGraph: { - title: "Garwood Grill - Premium Grilled Cuisine", description: "Award-winning restaurant specializing in perfectly grilled steaks and fresh seafood.", url: "https://garwoodgrill.com", siteName: "Garwood Grill", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-hand-holding-grilled-meat-with-tong-outdoor-barbecue_23-2147841007.jpg", alt: "Garwood Grill Premium Grilled Steak Restaurant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Garwood Grill - Premium Grilled Cuisine", description: "Experience exceptional flame-grilled steaks and fresh seafood.", images: [ - "http://img.b2bpic.net/free-photo/close-up-hand-holding-grilled-meat-with-tong-outdoor-barbecue_23-2147841007.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Garwood Grill", description: "Experience premium grilling at Garwood Grill"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -