Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fb08d5a449 | |||
| a4bb8b708f | |||
| 8959bfa7c1 | |||
| d2c7a005e1 | |||
| c3e94790f7 | |||
| 81839879e3 | |||
| 8bfb5c724d | |||
| ffaf927f5e | |||
| 6b2507ccdb |
@@ -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';
|
||||||
@@ -41,24 +41,20 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero" style={{ backgroundColor: "var(--background)" }}>
|
||||||
<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>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about" style={{ backgroundColor: "var(--card)" }}>
|
||||||
<AboutMetric
|
<AboutMetric
|
||||||
title="A Slice of Italy in the Heart of the City"
|
title="A Slice of Italy in the Heart of the City"
|
||||||
metrics={[
|
metrics={[
|
||||||
@@ -71,7 +67,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="menu" data-section="menu">
|
<div id="menu" data-section="menu" style={{ backgroundColor: "var(--background)" }}>
|
||||||
<ProductCardFour
|
<ProductCardFour
|
||||||
title="Our Signature Menu"
|
title="Our Signature Menu"
|
||||||
description="Handcrafted Italian dishes prepared fresh daily using the finest ingredients. Each plate tells a story of tradition and passion."
|
description="Handcrafted Italian dishes prepared fresh daily using the finest ingredients. Each plate tells a story of tradition and passion."
|
||||||
@@ -118,7 +114,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="features" data-section="features">
|
<div id="features" data-section="features" style={{ backgroundColor: "var(--card)" }}>
|
||||||
<FeatureCardEleven
|
<FeatureCardEleven
|
||||||
title="The Italian Experience"
|
title="The Italian Experience"
|
||||||
description="Discover what makes our restaurant truly special"
|
description="Discover what makes our restaurant truly special"
|
||||||
@@ -149,7 +145,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials" style={{ backgroundColor: "var(--card)" }}>
|
||||||
<TestimonialCardTwo
|
<TestimonialCardTwo
|
||||||
title="What Our Guests Say"
|
title="What Our Guests Say"
|
||||||
description="Real stories from people who have experienced the warmth and flavors of our restaurant"
|
description="Real stories from people who have experienced the warmth and flavors of our restaurant"
|
||||||
@@ -204,7 +200,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="social-proof" data-section="social-proof">
|
<div id="social-proof" data-section="social-proof" style={{ backgroundColor: "var(--background)" }}>
|
||||||
<SocialProofOne
|
<SocialProofOne
|
||||||
title="Trusted by Italy's Best"
|
title="Trusted by Italy's Best"
|
||||||
description="Partnerships with prestigious organizations and local suppliers"
|
description="Partnerships with prestigious organizations and local suppliers"
|
||||||
@@ -224,7 +220,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact" style={{ backgroundColor: "var(--card)" }}>
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
tag="Reserve Your Table"
|
tag="Reserve Your Table"
|
||||||
title="Join Us for an Unforgettable Evening"
|
title="Join Us for an Unforgettable Evening"
|
||||||
@@ -239,7 +235,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer" style={{ backgroundColor: "var(--background)" }}>
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
logoText="Ristorante Italia"
|
logoText="Ristorante Italia"
|
||||||
columns={[
|
columns={[
|
||||||
|
|||||||
Reference in New Issue
Block a user