9 Commits

Author SHA1 Message Date
e82bbfd8ee Merge version_3 into main
Merge version_3 into main
2026-03-04 18:02:39 +00:00
49ea6cf70d Update src/app/page.tsx 2026-03-04 18:02:35 +00:00
cf9e508625 Merge version_2 into main
Merge version_2 into main
2026-03-04 17:41:18 +00:00
3bd4e0d200 Update src/app/page.tsx 2026-03-04 17:41:14 +00:00
329f8ac5b6 Update src/app/layout.tsx 2026-03-04 17:41:13 +00:00
540c03fcd1 Merge version_1 into main
Merge version_1 into main
2026-03-04 17:40:28 +00:00
88c75b7d3e Merge version_1 into main
Merge version_1 into main
2026-03-04 17:39:43 +00:00
b3cc5524d7 Merge version_1 into main
Merge version_1 into main
2026-03-04 17:38:18 +00:00
644f72c4e1 Merge version_1 into main
Merge version_1 into main
2026-03-04 17:36:55 +00:00
2 changed files with 31 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"
@@ -127,6 +127,27 @@ export default function HomePage() {
/>
</div>
<div id="dolce-section" data-section="dolce-section">
<ProductCardOne
title="La Nostra Collezione Dolce"
description="Scopri le nostre specialità dolciarie preparate con amore e ingredienti selezionati."
tag="Dolci"
tagIcon={ChefHat}
products={[
{
id: "1", name: "Dolce Signature", price: "€12,00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUSQ4shuB9VRQV23gjkv31FrDN/uploaded-1772647317279-c80hkw6l.jpg", imageAlt: "Dolce Signature"
},
{
id: "2", name: "Dolce Speciale", price: "€14,00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUSQ4shuB9VRQV23gjkv31FrDN/uploaded-1772647317279-ne32gy29.jpg", imageAlt: "Dolce Speciale"
},
]}
gridVariant="two-columns-alternating-heights"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="reviews-social-proof" data-section="reviews-social-proof">
<TestimonialCardSixteen
title="Testimonianze dei Nostri Clienti"
@@ -217,4 +238,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}