Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 497fd42664 | |||
| a11e44a3ae | |||
| 79c73fa737 | |||
| fe27b19594 | |||
| 9d7732df4f |
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="it">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1437,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -235,8 +235,8 @@ export default function HomePage() {
|
||||
"Informazioni su prodotti specifici", "Verifica disponibilità", "Consulenza sulla scelta", "Prenotazione consultazione privata"],
|
||||
},
|
||||
{
|
||||
id: "vendi", tag: "Vendi i Tuoi Articoli", price: "Valutazione", period: "Professionale", description:
|
||||
"Proponi articoli di lusso per la vendita in consignazione o acquisto diretto.", button: { text: "Inizia Qui", href: "/sell" },
|
||||
id: "vendi", tag: "Consegna Prodotti", price: "Valutazione", period: "Professionale", description:
|
||||
"Proponi articoli di lusso per la vendita in consignazione o acquisto diretto.", button: { text: "Richiedi Valutazione", href: "/sell" },
|
||||
featuresTitle: "Processo Trasparente:", features: [
|
||||
"Valutazione gratuita", "Offerta competitiva", "Ritiro gratuito", "Pagamento veloce e sicuro"],
|
||||
},
|
||||
@@ -253,4 +253,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user