3 Commits

Author SHA1 Message Date
81839879e3 Update src/app/page.tsx 2025-12-20 13:51:04 +00:00
ffaf927f5e Update src/app/page.tsx 2025-12-20 13:35:44 +00:00
6b2507ccdb Update src/app/layout.tsx 2025-12-20 13:35:43 +00:00
2 changed files with 11 additions and 15 deletions

View File

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

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,15 @@ 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" } imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766237434264-kf7vqb4g.jpg"
]} imageAlt="Signature carbonara pasta dish"
showcaseImageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766237434264-kf7vqb4g.jpg" imagePosition="right"
showcaseImageAlt="Signature carbonara pasta dish"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766237433258-270lxdto.jpg"
imageAlt="Italian pasta ingredients"
showDimOverlay={true}
/> />
</div> </div>
@@ -276,4 +272,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }