Update src/app/page.tsx

This commit is contained in:
2025-12-20 13:35:44 +00:00
parent 6b2507ccdb
commit ffaf927f5e

View File

@@ -1,7 +1,7 @@
"use client" "use client";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroShowcaseSplitOverlay from '@/components/sections/hero/HeroShowcaseSplitOverlay'; import HeroSplit from '@/components/sections/hero/HeroSplit';
import AboutMetric from '@/components/sections/about/AboutMetric'; import AboutMetric from '@/components/sections/about/AboutMetric';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FeatureCardEleven from '@/components/sections/feature/FeatureCardEleven'; import FeatureCardEleven from '@/components/sections/feature/FeatureCardEleven';
@@ -42,19 +42,17 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroShowcaseSplitOverlay <HeroSplit
title="Authentic Italian Cuisine Since 1998" title="Authentic Italian Cuisine Since 1998"
description="Experience the flavors of Italy in every bite. Our chefs craft traditional recipes with locally-sourced ingredients, bringing warmth and tradition to your table." description="Experience the flavors of Italy in every bite. Our chefs craft traditional recipes with locally-sourced ingredients, bringing warmth and tradition to your table."
tags={["Authentic Italian", "Wood-Fired Oven", "Farm Fresh", "Family Recipes", "Award-Winning", "Mediterranean"]} tag="Experience Italy"
buttons={[ buttons={[
{ text: "Make a Reservation", href: "contact" }, { text: "Make a Reservation", href: "contact" },
{ text: "View Menu", href: "menu" } { text: "View Menu", href: "menu" }
]} ]}
showcaseImageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766237434264-kf7vqb4g.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766237434264-kf7vqb4g.jpg"
showcaseImageAlt="Signature carbonara pasta dish" imageAlt="Signature carbonara pasta dish"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766237433258-270lxdto.jpg" imagePosition="right"
imageAlt="Italian pasta ingredients"
showDimOverlay={true}
/> />
</div> </div>
@@ -276,4 +274,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }