diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dea2a07..e8dab52 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,15 +1,13 @@ -import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; -import "./globals.css"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Casitas Taco Cocina Mexican - Authentic Mexican Food in Mission Viejo", description: - "Fresh tacos, handmade tortillas, and authentic Mexican flavors in Mission Viejo. Visit Casitas Taco Cocina Mexican for the best neighborhood Mexican restaurant."}; + title: 'Casitas Taco Cocina', + description: 'Fresh tacos, housemade chips, and authentic Mexican flavors served in the heart of Mission Viejo.', +}; export default function RootLayout({ children, @@ -17,14 +15,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - {children} -