4 Commits

Author SHA1 Message Date
339aeb1e26 Merge version_2 into main
Merge version_2 into main
2026-02-04 23:12:27 +00:00
5d1567ee31 Update src/app/page.tsx 2026-02-04 23:12:23 +00:00
63a760fa75 Update src/app/layout.tsx 2026-02-04 23:12:22 +00:00
47745ec13e Update src/app/blog/page.tsx 2026-02-04 23:12:21 +00:00
3 changed files with 12 additions and 24 deletions

View File

@@ -54,7 +54,8 @@ export default function BlogPage() {
const url = `${apiUrl}/posts/${projectId}?status=published`;
const response = await fetch(url, {
method: "GET", headers: {
"Content-Type": "application/json"},
"Content-Type": "application/json"
},
});
if (response.ok) {
@@ -152,4 +153,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -1265,4 +1265,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -1,8 +1,8 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
@@ -36,35 +36,22 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
<HeroOverlay
title="Authentic Italian Excellence"
description="Experience the finest Italian cuisine in an elegant setting. From traditional recipes passed down through generations to modern interpretations of classic dishes, every plate tells a story of passion and mastery."
tag="Michelin Recognized"
tagIcon={Award}
background={{
variant: "glowing-orb"
}}
kpis={[
{
value: "25+", label: "Years of Excellence"
},
{
value: "50+", label: "Premium Wine Selections"
},
{
value: "4.9★", label: "Guest Rating"
}
]}
enableKpiAnimation={true}
imageSrc="http://img.b2bpic.net/free-photo/gourmet-meal-served-with-wine_23-2148516896.jpg"
imageAlt="Elegant Italian restaurant dining experience"
imagePosition="right"
textPosition="bottom-left"
showBlur={true}
showDimOverlay={false}
buttons={[
{
text: "Reserve Now", href: "contact"
},
{
text: "View Menu", href: "#specialties"
text: "View Menu", href: "specialties"
}
]}
/>
@@ -276,4 +263,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}