From 116cd009a1b275a4ac36fb43fb549950f4e4004d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 12:24:11 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b797436..8c3072c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Salute & Bellezza - Centro Estetico Fidenza | Trattamenti Viso e Corpo", description: "Centro estetico professionale a Fidenza. Trattamenti viso, pulizia profonda, benessere e relax. Prenota il tuo appuntamento con le nostre estetiste esperte.", keywords: "centro estetico Fidenza, trattamenti viso, pulizia viso, centro benessere, estetista Parma, trattamenti corpo, beauty salon", metadataBase: new URL("https://salutebellezza.it"), - alternates: { - canonical: "https://salutebellezza.it"}, - openGraph: { - title: "Salute & Bellezza - Centro Estetico Fidenza", description: "Trattamenti professionali per bellezza e benessere. Ambiente accogliente, relax garantito. Prenota ora!", url: "https://salutebellezza.it", siteName: "Salute & Bellezza", type: "website", images: [ - { - url: "https://salutebellezza.it/og-image.jpg", alt: "Salute & Bellezza Centro Estetico Fidenza"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Salute & Bellezza - Centro Estetico", description: "Trattamenti professionali per bellezza e benessere a Fidenza", images: ["https://salutebellezza.it/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Salute & Bellezza - Centro Estetico Fidenza", description: "Centro estetico professionale a Fidenza. Trattamenti viso e corpo personalizzati in ambiente accogliente e rilassante."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}