From f296804bc0b6367d29065e62aef7807b86280e3e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 23:45:42 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1427 +------------------------------------------- 1 file changed, 25 insertions(+), 1402 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ac4458e..3b0f574 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,32 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/shared/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Carnitas House - Authentic Tacos & Fresh Mexican Food", description: "Discover San Gabriel Valley's hidden gem taco spot. Famous carnitas, fresh daily salsa, outdoor seating, and live music. Call (626) 555-0147 for catering.", keywords: "carnitas tacos, authentic Mexican food, San Gabriel Valley, tacos near me, carnitas by the pound, catering, live music", metadataBase: new URL("https://carnitashouse.com"), - alternates: { - canonical: "https://carnitashouse.com" - }, - openGraph: { - title: "Carnitas House - Local Favorite Taco Spot", description: "Best carnitas in San Gabriel Valley. Fresh tacos, outdoor vibes, and authentic Mexican cuisine.", url: "https://carnitashouse.com", siteName: "Carnitas House", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-small-mexican-hat-fresh-burger_23-2148042517.jpg", alt: "Fresh carnitas tacos" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Carnitas House - Authentic Tacos & Fresh Mexican Food", description: "San Gabriel Valley's hidden gem taco spot with carnitas, fresh salsa, and outdoor seating.", images: ["http://img.b2bpic.net/free-photo/close-up-small-mexican-hat-fresh-burger_23-2148042517.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Carnitas House | Authentic Mexican Tacos & Carnitas", description: "Authentic tacos and fresh carnitas made daily in the San Gabriel Valley. Local favorite with outdoor seating, live music, and catering available."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + {children} - -