From 7e791e0398464c963611255f27f43c0c56da52b0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 23:52:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 31 ++++++------------------------- 1 file changed, 6 insertions(+), 25 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index eef0902..8a227a9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,11 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; +import { Inter } from "next/font/google"; +import "@/styles/globals.css"; -const geist = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - 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."}; + title: "Carnitas House - Authentic Tacos & Local Flavor", description: "Home of the carnitas everyone talks about. Authentic tacos, fresh carnitas made daily, and outdoor vibes in the San Gabriel Valley."}; export default function RootLayout({ children, @@ -19,10 +13,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - {children} - + + {children}