Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-04 17:41:18 +00:00
2 changed files with 10 additions and 66 deletions

View File

@@ -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: "Ristorante Angolo Divino - Cucina Italiana Autentica a Grosseto",
description: "Ristorante a conduzione familiare nel cuore di Grosseto con cucina italiana autentica, ingredienti freschi e atmosfera accogliente. Specialità: Babà al Rum e pasta fresca fatta in casa. Prenota il tuo tavolo.",
keywords: "ristorante Grosseto, cucina italiana, ristorante familiare, Maremma Shopping Center, autentica cucina toscana",
metadataBase: new URL("https://angolodivinogrosseto.it"),
alternates: {
canonical: "https://angolodivinogrosseto.it",
},
openGraph: {
title: "Ristorante Angolo Divino - Autentica Cucina Italiana a Grosseto",
description: "Scopri l'autenticità della cucina italiana nel nostro ristorante a conduzione familiare. Specialità: Babà al Rum e pasta fresca.",
url: "https://angolodivinogrosseto.it",
siteName: "Ristorante Angolo Divino",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg",
alt: "Interno elegante del ristorante",
},
],
},
twitter: {
card: "summary_large_image",
title: "Ristorante Angolo Divino - Cucina Italiana",
description: "Prenota il tuo tavolo nel nostro autentico ristorante italiano a Grosseto.",
images: ["http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Ristorante Angolo Divino", description: "Autentica cucina italiana a Grosseto"};
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>
);
}
}

View File

@@ -61,8 +61,8 @@ export default function HomePage() {
rating={5}
ratingText="4.8+ Google Rating"
buttons={[
{ text: "📞 Chiama Ora", href: "tel:+39123456789" },
{ text: "📅 Prenota un Tavolo", href: "/contact" },
{ text: "Chiama Ora", href: "tel:+39123456789" },
{ text: "Prenota un Tavolo", href: "/contact" },
]}
buttonAnimation="slide-up"
mediaAnimation="slide-up"
@@ -217,4 +217,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}