Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 339aeb1e26 | |||
| 5d1567ee31 | |||
| 63a760fa75 | |||
| 47745ec13e |
@@ -54,7 +54,8 @@ export default function BlogPage() {
|
|||||||
const url = `${apiUrl}/posts/${projectId}?status=published`;
|
const url = `${apiUrl}/posts/${projectId}?status=published`;
|
||||||
const response = await fetch(url, {
|
const response = await fetch(url, {
|
||||||
method: "GET", headers: {
|
method: "GET", headers: {
|
||||||
"Content-Type": "application/json"},
|
"Content-Type": "application/json"
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
@@ -152,4 +153,4 @@ export default function BlogPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1265,4 +1265,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
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 SplitAbout from '@/components/sections/about/SplitAbout';
|
||||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||||
@@ -36,35 +36,22 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitKpi
|
<HeroOverlay
|
||||||
title="Authentic Italian Excellence"
|
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."
|
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"
|
tag="Michelin Recognized"
|
||||||
tagIcon={Award}
|
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"
|
imageSrc="http://img.b2bpic.net/free-photo/gourmet-meal-served-with-wine_23-2148516896.jpg"
|
||||||
imageAlt="Elegant Italian restaurant dining experience"
|
imageAlt="Elegant Italian restaurant dining experience"
|
||||||
imagePosition="right"
|
textPosition="bottom-left"
|
||||||
|
showBlur={true}
|
||||||
|
showDimOverlay={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Reserve Now", href: "contact"
|
text: "Reserve Now", href: "contact"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "View Menu", href: "#specialties"
|
text: "View Menu", href: "specialties"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -276,4 +263,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user