From e2cc8d9eb3575f9385f877f1b1e16b1f6edca941 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 23:13:03 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 62 ++++++++++------------------------------------ 1 file changed, 13 insertions(+), 49 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e12d6bd..f70af7a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,63 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Geist, Geist_Mono } from "next/font/google"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], - weight: ["300", "400", "700"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "[NOME BRAND] - Travel Blog Italiano", description: "Scopri storie autentiche di viaggio in Italia e nel mondo. Guide, destinazioni nascoste e esperienze vere raccontate da chi ama davvero viaggiare.", keywords: "travel blog italia, destinazioni viaggio, storie di viaggio, guide italiane, turismo consapevole", metadataBase: new URL("https://example.com"), - alternates: { - canonical: "https://example.com"}, - openGraph: { - title: "[NOME BRAND] - Storie di Viaggio Autentiche", description: "Esplora destinazioni straordinarie attraverso gli occhi di chi le ama davvero. Blog di viaggio con guide sincere e consigli autentici.", url: "https://example.com", siteName: "[NOME BRAND]", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/traveller-explore-rugged-landscape-iceland_346278-228.jpg", alt: "Destinazione di viaggio inspirante"}, - ], - }, - twitter: { - card: "summary_large_image", title: "[NOME BRAND] - Storie di Viaggio", description: "Guida autentiche e destinazioni nascoste. Scopri l'Italia e il mondo con noi.", images: ["http://img.b2bpic.net/free-photo/traveller-explore-rugged-landscape-iceland_346278-228.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +