From 02f417056dcc5a043d9233f30c960e06b3b85513 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 13:57:15 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1415 +------------------------------------------- 1 file changed, 9 insertions(+), 1406 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 888e1bb..e3cbe96 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,22 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Lora } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const lora = Lora({ + subsets: ["latin"], + variable: "--font-lora"}); export const metadata: Metadata = { - title: "Gelateria Del Parco | Gelato Artigianale Carnate", description: "Scopri il gelato artigianale fresco di Gelateria Del Parco a Carnate. Ingredienti naturali, gusti speciali e atmosfera familiare.", keywords: "gelato artigianale, gelato Carnate, gelato fresco, pistachio, cioccolato, affogato, torte gelato", metadataBase: new URL("https://gelateriadeparco.it"), - alternates: { - canonical: "https://gelateriadeparco.it"}, - openGraph: { - title: "Gelateria Del Parco | Gelato Artigianale", description: "Gelato artigianale di qualità con ingredienti naturali. Vieni a trovarci al parco di Carnate.", url: "https://gelateriadeparco.it", siteName: "Gelateria Del Parco", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/bottom-view-ice-creams-xmas-tree-cupcake-xmas-ornaments-grey-background_140725-108088.jpg", alt: "Gelato artigianale fresco"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Gelateria Del Parco | Gelato Artigianale", description: "Gelato artigianale fresco a Carnate", images: ["http://img.b2bpic.net/free-photo/bottom-view-ice-creams-xmas-tree-cupcake-xmas-ornaments-grey-background_140725-108088.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Gelateria Del Parco", description: "Gelato artigianale di qualità a Carnate"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -