Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3de07e88ad | |||
| 897801d62a | |||
| a6cb8c3abf | |||
| 7bc1778404 | |||
| 3fe4ef7996 |
@@ -1,66 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat, Inter } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const geist = Geist({
|
||||||
variable: "--font-montserrat",
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter",
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Raineri Group – Distribuzione Prodotti Dolciari Nembro (BG)",
|
title: "Raineri Group - Distribuzione Prodotti Dolciari", description: "Ingrosso e vendita al dettaglio di dolci, salati, liquori e bibite per aziende e privati a Nembro (BG)."};
|
||||||
description: "Ingrosso e vendita al dettaglio di dolci, salati, liquori e bibite a Nembro. ⭐ 5.0 su Google. Prezzi competitivi, vasto assortimento e servizio affidabile.",
|
|
||||||
keywords: "distribuzione dolci Bergamo, ingrosso dolci Nembro, fornitore confetteria BG, snack e bibite, liquori bergamo",
|
|
||||||
metadataBase: new URL("https://rainerigroupsrl.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://rainerigroupsrl.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Raineri Group – Distributore Dolciari Professionista",
|
|
||||||
description: "Scopri il tuo partner affidabile per l'ingrosso di dolci, snack, liquori e bevande a Nembro (BG). 35 anni di esperienza.",
|
|
||||||
url: "https://rainerigroupsrl.com",
|
|
||||||
siteName: "Raineri Group S.R.L.",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/top-view-cake-slices-with-nuts-cookies-dark-surface_140725-90765.jpg",
|
|
||||||
alt: "Raineri Group – Prodotti Dolciari di Qualità",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Raineri Group – Distribuzione Dolciari Nembro",
|
|
||||||
description: "Ingrosso e vendita al dettaglio – Qualità, Assortimento, Convenienza",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/top-view-cake-slices-with-nuts-cookies-dark-surface_140725-90765.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="it">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1428,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ export default function HomePage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
title="Le Nostre Categorie Prodotto"
|
title="Le Nostre Categorie Prodotto"
|
||||||
description="Scopri la vasta gamma di prodotti disponibili per aziende e privati"
|
description="Scopri come aziende locali risparmiano il 20% ordinando in bulk con la nostra ampia gamma di prodotti per aziende e privati"
|
||||||
tag="Assortimento Completo"
|
tag="Assortimento Completo"
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -228,4 +228,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user