Merge version_2 into main #2
@@ -1,57 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { DM_Sans } 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 dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
import "@/styles/globals.css";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Dolce Vita | Authentic Italian Cuisine & Fine Dining", description: "Experience authentic Italian cuisine at Dolce Vita. Artisanal dishes, premium ingredients, and impeccable service in an elegant atmosphere.", keywords: "Italian restaurant, fine dining, authentic cuisine, risotto, pasta, Italian wines, reservations", metadataBase: new URL("https://dolcevita.com"),
|
||||
alternates: {
|
||||
canonical: "https://dolcevita.com"},
|
||||
openGraph: {
|
||||
title: "Dolce Vita | Authentic Italian Cuisine", description: "Discover the essence of Italy through meticulously crafted dishes and premium ingredients.", url: "https://dolcevita.com", siteName: "Dolce Vita", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg", alt: "Dolce Vita signature pasta dish"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Dolce Vita | Authentic Italian Dining", description: "Experience authentic Italian cuisine at Dolce Vita.", images: ["http://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Dolce Vita - Authentic Italian Cuisine", description: "Experience authentic Italian dining with premium ingredients and impeccable service."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1379,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -36,7 +36,8 @@ export default function LandingPage() {
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{
|
||||
text: "Reserve Table", href: "#reserve"}}
|
||||
text: "Reserve Table", href: "#reserve"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -59,11 +60,14 @@ export default function LandingPage() {
|
||||
buttonAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-pensive-old-man-chef-dressed-uniform-posing-against-dark-background_613910-17582.jpg", alt: "Chef portrait"},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-pensive-old-man-chef-dressed-uniform-posing-against-dark-background_613910-17582.jpg", alt: "Chef portrait"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-couple-holding-hands-talking-cafe_637285-12503.jpg", alt: "Satisfied guests"},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-couple-holding-hands-talking-cafe_637285-12503.jpg", alt: "Satisfied guests"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-friends-enjoying-time-together_23-2148395394.jpg", alt: "Family dining"},
|
||||
src: "http://img.b2bpic.net/free-photo/young-friends-enjoying-time-together_23-2148395394.jpg", alt: "Family dining"
|
||||
},
|
||||
]}
|
||||
avatarText="Trusted by 2000+ delighted guests annually"
|
||||
/>
|
||||
@@ -83,7 +87,7 @@ export default function LandingPage() {
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardOne
|
||||
title="Our Signature Dishes"
|
||||
description="Each dish tells a story of Italian culinary heritage, crafted with passion and the finest ingredients sourced directly from Italy."
|
||||
description="Authentic Italian classics, expertly prepared. Each dish tells a story of Italian culinary heritage, crafted with passion and the finest ingredients sourced directly from Italy."
|
||||
tag="Chef's Selection"
|
||||
tagIcon={Star}
|
||||
tagAnimation="blur-reveal"
|
||||
@@ -94,13 +98,16 @@ export default function LandingPage() {
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Risotto al Tartufo", price: "$28", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/salad-with-herbs-topped-with-srimp_141793-838.jpg", imageAlt: "Creamy truffle risotto"},
|
||||
"http://img.b2bpic.net/free-photo/salad-with-herbs-topped-with-srimp_141793-838.jpg", imageAlt: "Creamy truffle risotto"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Osso Buco alla Milanese", price: "$32", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/top-view-traditional-azerbaijani-buglama-white-plate-with-herbs_140725-10406.jpg", imageAlt: "Braised veal shank"},
|
||||
"http://img.b2bpic.net/free-photo/top-view-traditional-azerbaijani-buglama-white-plate-with-herbs_140725-10406.jpg", imageAlt: "Braised veal shank"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Tiramisu Classico", price: "$12", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/tiramisu-cake-decorated-with-dried-flowers-fruits-round-wooden-board_114579-17250.jpg", imageAlt: "Traditional tiramisu"},
|
||||
"http://img.b2bpic.net/free-photo/tiramisu-cake-decorated-with-dried-flowers-fruits-round-wooden-board_114579-17250.jpg", imageAlt: "Traditional tiramisu"
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Full Menu", href: "https://example.com/menu" }]}
|
||||
/>
|
||||
@@ -114,15 +121,19 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "2000+", description:
|
||||
"Satisfied guests who experience our authentic Italian cuisine each year"},
|
||||
"Satisfied guests who experience our authentic Italian cuisine each year"
|
||||
},
|
||||
{
|
||||
id: "2", value: "50+", description:
|
||||
"Regional Italian suppliers we partner with for premium ingredients"},
|
||||
"Regional Italian suppliers we partner with for premium ingredients"
|
||||
},
|
||||
{
|
||||
id: "3", value: "9 Years", description:
|
||||
"Of culinary excellence and unwavering dedication to quality"},
|
||||
"Of culinary excellence and unwavering dedication to quality"
|
||||
},
|
||||
{
|
||||
id: "4", value: "4.9★", description: "Average guest satisfaction rating across all dining experiences"},
|
||||
id: "4", value: "4.9★", description: "Average guest satisfaction rating across all dining experiences"
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -142,19 +153,23 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "1", title: "An Evening of Pure Bliss", quote:
|
||||
"The risotto was absolutely divine. Every bite transported me to Piedmont. The attention to detail in every dish is unmatched. This is what authentic Italian dining should be.", name: "Isabella Romano", role: "Fine Arts Curator", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/portrait-pensive-old-man-chef-dressed-uniform-posing-against-dark-background_613910-17582.jpg", imageAlt: "Isabella Romano"},
|
||||
"http://img.b2bpic.net/free-photo/portrait-pensive-old-man-chef-dressed-uniform-posing-against-dark-background_613910-17582.jpg", imageAlt: "Isabella Romano"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Perfect for Our Anniversary", quote:
|
||||
"We celebrated our 25th anniversary here and it was absolutely perfect. The ambiance, the food, the service—everything was exceptional. We're already planning our next visit.", name: "Marco & Sofia Caruso", role: "Restaurant Owners", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/happy-couple-holding-hands-talking-cafe_637285-12503.jpg", imageAlt: "Marco and Sofia"},
|
||||
"http://img.b2bpic.net/free-photo/happy-couple-holding-hands-talking-cafe_637285-12503.jpg", imageAlt: "Marco and Sofia"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Business Dining Excellence", quote:
|
||||
"I've hosted numerous client dinners at Dolce Vita. It's the perfect setting for business and pleasure. The wine pairings are exceptional and the chef truly understands culinary artistry.", name: "Antonio Visconti", role: "Managing Director", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Antonio Visconti"},
|
||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Antonio Visconti"
|
||||
},
|
||||
{
|
||||
id: "4", title: "A Family Tradition", quote:
|
||||
"We bring our whole family here every special occasion. The kids love the pasta, and the adults appreciate the sophisticated menu. It's become our favorite restaurant.", name: "Elena & Giovanni Rossi", role: "Educators", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-friends-enjoying-time-together_23-2148395394.jpg", imageAlt: "Elena and Giovanni"},
|
||||
"http://img.b2bpic.net/free-photo/young-friends-enjoying-time-together_23-2148395394.jpg", imageAlt: "Elena and Giovanni"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -168,11 +183,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Mass-produced frozen ingredients", "One-size-fits-all menus", "Rushed dining experiences", "Limited wine selection"],
|
||||
"Mass-produced frozen ingredients", "One-size-fits-all menus", "Rushed dining experiences", "Limited wine selection"
|
||||
],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Artisanal ingredients sourced directly from Italy", "Seasonal menu celebrating regional specialties", "Leisurely dining with impeccable service", "Curated wine collection with expert sommelier guidance"],
|
||||
"Artisanal ingredients sourced directly from Italy", "Seasonal menu celebrating regional specialties", "Leisurely dining with impeccable service", "Curated wine collection with expert sommelier guidance"
|
||||
],
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user