diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1910272..161cdd6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Vintage Nassa | Luxury Second Hand a Lugano", - description: "Boutique luxury second hand a Lugano. Borse Hermès, Chanel, Louis Vuitton autentiche. Accessori e abbigliamento di lusso verificati.", - keywords: "borse firmate Lugano, luxury second hand, borse Chanel, Hermès, Louis Vuitton, vintage Lugano, boutique lusso", - metadataBase: new URL("https://vintage-nassa.ch"), - alternates: { - canonical: "https://vintage-nassa.ch", - }, - openGraph: { - title: "Vintage Nassa | Boutique Luxury Second Hand a Lugano", - description: "Scopri la collezione esclusiva di borse e accessori di lusso autentici a Lugano. Hermès, Chanel, Louis Vuitton e altri brand premium.", - url: "https://vintage-nassa.ch", - siteName: "Vintage Nassa", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg", - alt: "Vintage Nassa - Boutique Luxury Second Hand Lugano", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Vintage Nassa | Luxury Second Hand Lugano", - description: "Borse e accessori di lusso autentici. Boutique premium nel centro di Lugano.", - images: ["http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Vintage Nassa - Luxury Second Hand Boutique", description: "Luxury second hand borse e accessori autentici dei migliori brand internazionali a Lugano"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}