From 7ac7b003a299c080a34b269d59ef6190cce16141 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 10:49:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1421 +------------------------------------------- 1 file changed, 9 insertions(+), 1412 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e36364e..6cb9ba8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; +import { Poppins } 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 lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const poppins = Poppins({ + subsets: ["latin"], + weight: ["400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Lorenzo's - Authentic Argentine Restaurant & Cuisine", description: "Experience authentic Argentine cuisine at Lorenzo's. Enjoy traditional dishes like asado, empanadas, and milanesa in a warm, welcoming atmosphere.", keywords: "Argentine restaurant, authentic cuisine, asado, empanadas, Buenos Aires, Latin American food", metadataBase: new URL("https://lorenzos-restaurant.com"), - alternates: { - canonical: "https://lorenzos-restaurant.com"}, - openGraph: { - title: "Lorenzo's - Authentic Argentine Restaurant", description: "Discover the true flavors of Argentina at Lorenzo's. From grilled asado to handmade empanadas, every dish is tradition.", url: "https://lorenzos-restaurant.com", siteName: "Lorenzo's", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-holding-tray-with-roasted-ham-near-woman_23-2147948033.jpg", alt: "Grilled Argentine asado"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Lorenzo's - Authentic Argentine Cuisine", description: "Experience authentic Argentine dining at Lorenzo's", images: ["http://img.b2bpic.net/free-photo/man-holding-tray-with-roasted-ham-near-woman_23-2147948033.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Lorenzo's Argentine Restaurant", description: "Experience authentic Argentine cuisine at Lorenzo's. Enjoy traditional dishes like asado, empanadas, and more."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -