From a12600ab1a93b8796b12b6340a0b84ffab4758f2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 04:56:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1441 +------------------------------------------- 1 file changed, 7 insertions(+), 1434 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 741c8d8..2e56c79 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,15 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Cazadores Mexican Restaurant | Authentic Mexican Food in Monticello", - description: "Experience authentic Mexican cuisine at Cazadores. Fresh tacos, burritos, enchiladas, and margaritas in Monticello, Indiana. Order online today!", - keywords: "Mexican restaurant Monticello, authentic tacos, burritos, enchiladas, margaritas, Mexican food Indiana", - metadataBase: new URL("https://cazadores-monticello.com"), - alternates: { - canonical: "https://cazadores-monticello.com", - }, - openGraph: { - title: "Cazadores Mexican Restaurant | Authentic Cuisine", - description: "Discover authentic Mexican food with fresh ingredients and family recipes since 1999. Order online or dine in Monticello.", - siteName: "Cazadores Mexican Restaurant", - url: "https://cazadores-monticello.com", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-delicious-meal-with-tacos_23-2148764341.jpg", - alt: "Cazadores Mexican Restaurant", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Cazadores Mexican Restaurant", - description: "Authentic Mexican food in Monticello. Fresh tacos, burritos, enchiladas. Order online!", - images: ["http://img.b2bpic.net/free-photo/high-angle-delicious-meal-with-tacos_23-2148764341.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; +export const metadata = { + title: "Cazadores Mexican Restaurant", description: "Authentic Mexican Food in Monticello"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -