Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c5f3016464 | |||
| dfcc20e6fc | |||
| 3cd71538cc |
@@ -102,7 +102,7 @@ export default function BlogPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "hero" },
|
{ name: "Home", id: "hero" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Cuisine", id: "features" },
|
{ name: "Menu", id: "features" },
|
||||||
{ name: "Testimonials", id: "testimonial" },
|
{ name: "Testimonials", id: "testimonial" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
@@ -158,4 +158,4 @@ export default function BlogPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,46 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "La Bella Italia - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine in an elegant setting. Fresh ingredients, traditional recipes, and premium wines. Make your reservation today.", keywords: "Italian restaurant, authentic cuisine, fine dining, pasta, wine", metadataBase: new URL("https://labellaitalia.com"),
|
title: "La Bella Italia", description: "Experience Authentic Italian Cuisine"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://labellaitalia.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "La Bella Italia - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine in an elegant setting. Fresh ingredients, traditional recipes, and premium wines.", type: "website", siteName: "La Bella Italia", images: [{
|
|
||||||
url: "https://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg", alt: "La Bella Italia - Authentic Italian Cuisine"
|
|
||||||
}]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "La Bella Italia - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine. Fresh ingredients, traditional recipes, premium wines.", images: ["https://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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
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="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1259,7 +1233,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
|
|||||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
import { ChefHat, Clock, Heart, History, Leaf, Sparkles, Star, Wine, Package } from 'lucide-react';
|
import { ChefHat, Clock, Heart, History, Leaf, Sparkles, Star, Wine, Package, UtensilsCrossed } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -31,7 +31,7 @@ export default function LandingPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "hero" },
|
{ name: "Home", id: "hero" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Cuisine", id: "features" },
|
{ name: "Menu", id: "features" },
|
||||||
{ name: "Testimonials", id: "testimonial" },
|
{ name: "Testimonials", id: "testimonial" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
@@ -79,24 +79,24 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="features" data-section="features">
|
<div id="features" data-section="features">
|
||||||
<ProductCardFour
|
<ProductCardFour
|
||||||
title="What Makes Us Special"
|
title="Our Menu Selection"
|
||||||
description="Discover the culinary excellence that sets La Bella Italia apart"
|
description="Discover the culinary excellence in our carefully crafted menu items"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Fresh Ingredients", price: "Daily Selection", variant: "Sourced from local farms and Italian importers", imageSrc: "https://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg", imageAlt: "Fresh Italian ingredients"
|
id: "1", name: "Handmade Pasta", price: "Market Price", variant: "Traditional Italian pasta made fresh daily", imageSrc: "https://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg", imageAlt: "Handmade fresh pasta"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Master Chef Expertise", price: "Premium Quality", variant: "Trained in Rome with decades of experience", imageSrc: "https://img.b2bpic.net/free-photo/chef-sitting-table_140725-5179.jpg", imageAlt: "Master chef at work"
|
id: "2", name: "Risotto Milanese", price: "$28.00", variant: "Classic creamy risotto with saffron and parmesan", imageSrc: "https://img.b2bpic.net/free-photo/chef-sitting-table_140725-5179.jpg", imageAlt: "Risotto Milanese"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Premium Wine Selection", price: "Curated Collection", variant: "Italian wines from renowned vineyards", imageSrc: "https://img.b2bpic.net/free-photo/red-wine-glass-wooden-table_1139-868.jpg", imageAlt: "Premium Italian wines"
|
id: "3", name: "Osso Buco", price: "$32.00", variant: "Braised veal shanks with white wine and vegetables", imageSrc: "https://img.b2bpic.net/free-photo/red-wine-glass-wooden-table_1139-868.jpg", imageAlt: "Osso Buco"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4", name: "Elegant Ambiance", price: "Fine Dining", variant: "Warm and inviting atmosphere", imageSrc: "https://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg", imageAlt: "Restaurant dining ambiance"
|
id: "4", name: "Tiramisu", price: "$12.00", variant: "Classic Italian dessert with mascarpone and espresso", imageSrc: "https://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg", imageAlt: "Tiramisu dessert"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
tag="Our Excellence"
|
tag="Chef's Selection"
|
||||||
tagIcon={Sparkles}
|
tagIcon={UtensilsCrossed}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
@@ -224,4 +224,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user