From aaae6bc76ade78ceef03a3807cde3d053a90139b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 05:53:24 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 80d6ed2..d725b3b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "El Sueño Honduran Grill - Authentic Tacos & Margaritas in Huntington Station", description: "Award-winning Latin restaurant in Huntington, NY. Fresh tacos, carne asada, margaritas & more. Order online, call 631-635-4321 or book a reservation today.", keywords: "tacos Huntington Station, Mexican restaurant NY, carne asada, birria tacos, margaritas, Latin food near me, authentic Mexican cuisine", metadataBase: new URL("https://elsueno-huntington.com"), - alternates: { - canonical: "https://elsueno-huntington.com"}, - openGraph: { - title: "El Sueño Honduran Grill - Authentic Tacos & Margaritas", description: "Your neighborhood favorite for fresh tacos, guacamole & legendary margaritas. 4.3★ rated by 250+ local reviews.", url: "https://elsueno-huntington.com", siteName: "El Sueño Honduran Grill", images: [ - { - url: "http://img.b2bpic.net/free-photo/homemade-michelada-cocktail-with-beer-lime-juicehot-saucesalted-rim-tomato-juice-wooden-table_123827-21881.jpg", alt: "Fresh tacos and margarita from El Sueño"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "El Sueño Honduran Grill", description: "Authentic tacos, fresh guacamole & margaritas. Your neighborhood favorite.", images: ["http://img.b2bpic.net/free-photo/homemade-michelada-cocktail-with-beer-lime-juicehot-saucesalted-rim-tomato-juice-wooden-table_123827-21881.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "El Sueño Honduran Grill", description: "Authentic tacos, fresh guacamole, and legendary margaritas in Huntington Station"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}