From 1e31f1cf94194d650336fa1c3404f1076a2b70ac Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 22:19:02 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 6 insertions(+), 1413 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 33b79fd..879dec5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Euro Pitture | Tinteggiatura Civile e Industriale — Suzzara", description: "Dal 1990, tinteggiatura professionale civile e industriale con piattaforme aeree e parco mezzi proprio. Preventivo gratuito.", keywords: "tinteggiatura, pittura, industriale, civile, Suzzara, Mantova, preventivo gratuito, piattaforme aeree", metadataBase: new URL("https://www.europitture.net"), - alternates: { - canonical: "https://www.europitture.net" - }, - openGraph: { - title: "Euro Pitture — Tinteggiatura Civile e Industriale", description: "Dal 1990, maestri nei colori. Servizi professionali di tinteggiatura con piattaforme aeree e parco mezzi proprio.", url: "https://www.europitture.net", siteName: "Euro Pitture", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-nacelle_268835-3277.jpg", alt: "Euro Pitture parco mezzi" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Euro Pitture — Tinteggiatura Civile e Industriale", description: "Dal 1990, maestri nei colori. Suzzara, Mantova.", images: ["http://img.b2bpic.net/free-photo/man-nacelle_268835-3277.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Euro Pitture - Tinteggiatura Civile e Industriale", description: "Maestri nei colori, leader nei risultati. Tinteggiatura civile e industriale con piattaforme aeree dal 1990."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -