From 3ca729fd44dccb8299c40760497c647bdc176ee4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 13:12:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1426 -------------------------------------------- 1 file changed, 1426 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3c53b07..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); - -export const metadata: Metadata = { - title: "Burgers, Bait & Beer - Marina Waterfront Dining in San Diego", description: "Casual waterfront burgers, hot dogs, tacos, and cold beer at Embarcadero Marina Park South. Fresh food, great vibes, perfect views.", keywords: "burgers, beer, waterfront dining, San Diego marina, casual food, hot dogs, tacos", metadataBase: new URL("https://www.burgersbaairbeer.com"), - alternates: { - canonical: "https://www.burgersbaairbeer.com"}, - openGraph: { - title: "Burgers, Bait & Beer - Waterfront Marina Dining", description: "Grab fresh burgers, sizzling hot dogs, cold beer, and craft cocktails with stunning marina views.", url: "https://www.burgersbaairbeer.com", siteName: "Burgers, Bait & Beer", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/front-view-delicious-burger-arrangement_23-2148868201.jpg", alt: "Fresh gourmet burger at Burgers, Bait & Beer"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Burgers, Bait & Beer - Marina Waterfront Dining", description: "Fresh burgers, cold beer, and waterfront vibes at Embarcadero Marina Park South.", images: ["http://img.b2bpic.net/free-photo/front-view-delicious-burger-arrangement_23-2148868201.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -