Merge version_2 into main #1
111
src/app/about-us/page.tsx
Normal file
111
src/app/about-us/page.tsx
Normal file
@@ -0,0 +1,111 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
||||
|
||||
export default function AboutUsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Menu", id: "#menu"},
|
||||
{
|
||||
name: "About Us", id: "/about-us"},
|
||||
{
|
||||
name: "Gallery", id: "/gallery"},
|
||||
{
|
||||
name: "Reviews", id: "/reviews"},
|
||||
{
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/logo-design-with-blue-sun_1308-105544.jpg"
|
||||
logoAlt="EATLI Restaurant Logo"
|
||||
brandName="EATLI Restaurant"
|
||||
button={{
|
||||
text: "Book a Table", href: "#contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-us-story" data-section="about-us-story">
|
||||
<TextSplitAbout
|
||||
useInvertedBackground={true}
|
||||
title="Our Story: A Culinary Journey of Passion & Quality"
|
||||
description={[
|
||||
"EATLI Restaurant was born from a deep love for exceptional food and a desire to create a memorable dining experience. Our founders, a family of passionate food enthusiasts, envisioned a place where every dish tells a story, using only the freshest, locally-sourced ingredients.", "From our humble beginnings, we've grown into a beloved culinary destination, known for our innovative interpretations of classic dishes and our unwavering commitment to quality. Our values are simple: 'Freshness, Flavor, and Family.' We believe that great food brings people together, and we strive to create an atmosphere that feels like home, yet elevates every meal into a celebration.", "Our commitment extends beyond the plate. We are dedicated to sustainable practices, supporting local farmers, and ensuring that every ingredient meets our high standards. This dedication is reflected in the vibrant flavors and impeccable presentation of every dish we serve. Join us and become part of the EATLI family, where every meal is crafted with care and passion."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoSrc="http://img.b2bpic.net/free-vector/logo-design-with-blue-sun_1308-105544.jpg"
|
||||
logoAlt="EATLI Restaurant Logo"
|
||||
logoText="EATLI Restaurant"
|
||||
columns={[
|
||||
{
|
||||
title: "Explore", items: [
|
||||
{
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Menu", href: "#menu"},
|
||||
{
|
||||
label: "About Us", href: "/about-us"},
|
||||
{
|
||||
label: "Gallery", href: "/gallery"},
|
||||
{
|
||||
label: "Reviews", href: "/reviews"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Our Offerings", items: [
|
||||
{
|
||||
label: "Dinner Menu", href: "#menu"},
|
||||
{
|
||||
label: "Lunch Menu", href: "#menu"},
|
||||
{
|
||||
label: "Wine List", href: "#"},
|
||||
{
|
||||
label: "Private Events", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Reservations", href: "#contact"},
|
||||
{
|
||||
label: "Careers", href: "#"},
|
||||
{
|
||||
label: "Press", href: "#social-proof"},
|
||||
{
|
||||
label: "FAQ", href: "#faq"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 EATLI Restaurant. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
126
src/app/gallery/page.tsx
Normal file
126
src/app/gallery/page.tsx
Normal file
@@ -0,0 +1,126 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
|
||||
export default function GalleryPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Menu", id: "#menu"},
|
||||
{
|
||||
name: "About Us", id: "/about-us"},
|
||||
{
|
||||
name: "Gallery", id: "/gallery"},
|
||||
{
|
||||
name: "Reviews", id: "/reviews"},
|
||||
{
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/logo-design-with-blue-sun_1308-105544.jpg"
|
||||
logoAlt="EATLI Restaurant Logo"
|
||||
brandName="EATLI Restaurant"
|
||||
button={{
|
||||
text: "Book a Table", href: "#contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "radial-gradient"}}
|
||||
title="Capturing Culinary Moments: Our Gallery"
|
||||
description="A visual journey through EATLI Restaurant – from our vibrant kitchen to your delightful dining experience. Discover the art behind every dish and the warmth of our ambiance."
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-cozy-restaurant-interior_23-2150493021.jpg", imageAlt: "Cozy restaurant interior with elegant lighting and tables"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-male-chef-preparing-dish_1220-7452.jpg", imageAlt: "Chef meticulously preparing a dish in the kitchen"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dosa-with-chutney-sambar-black-lentils_23-2148705037.jpg", imageAlt: "Dosa on a tawa, being freshly made in the kitchen"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/idli-vada-south-indian-food_23-2148705139.jpg", imageAlt: "Idli platter served with various chutneys and sambar"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-eating-lunch-restaurant_23-2149520845.jpg", imageAlt: "Family enjoying a lovely dining experience at the restaurant"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/table-full-food-happy-family_23-2149236938.jpg", imageAlt: "A wide shot of a family enjoying a meal together at EATLI"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoSrc="http://img.b2bpic.net/free-vector/logo-design-with-blue-sun_1308-105544.jpg"
|
||||
logoAlt="EATLI Restaurant Logo"
|
||||
logoText="EATLI Restaurant"
|
||||
columns={[
|
||||
{
|
||||
title: "Explore", items: [
|
||||
{
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Menu", href: "#menu"},
|
||||
{
|
||||
label: "About Us", href: "/about-us"},
|
||||
{
|
||||
label: "Gallery", href: "/gallery"},
|
||||
{
|
||||
label: "Reviews", href: "/reviews"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Our Offerings", items: [
|
||||
{
|
||||
label: "Dinner Menu", href: "#menu"},
|
||||
{
|
||||
label: "Lunch Menu", href: "#menu"},
|
||||
{
|
||||
label: "Wine List", href: "#"},
|
||||
{
|
||||
label: "Private Events", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Reservations", href: "#contact"},
|
||||
{
|
||||
label: "Careers", href: "#"},
|
||||
{
|
||||
label: "Press", href: "#social-proof"},
|
||||
{
|
||||
label: "FAQ", href: "#faq"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 EATLI Restaurant. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
320
src/app/page.tsx
320
src/app/page.tsx
@@ -34,33 +34,23 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#home",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
name: "Menu", id: "#menu"},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About Us", id: "/about-us"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
name: "Gallery", id: "/gallery"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Reviews", id: "/reviews"},
|
||||
{
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/logo-design-with-blue-sun_1308-105544.jpg"
|
||||
logoAlt="EATLI Restaurant Logo"
|
||||
brandName="EATLI Restaurant"
|
||||
button={{
|
||||
text: "Book a Table",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Book a Table", href: "#contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -68,47 +58,30 @@ export default function LandingPage() {
|
||||
<div id="home" data-section="home">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
title="Experience Exquisite Dining at EATLI"
|
||||
description="Where culinary artistry meets unforgettable flavors. Join us for a gastronomic journey that delights all senses."
|
||||
tag="Taste the Difference"
|
||||
tagIcon={Sparkles}
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
text: "View Menu", href: "#menu"},
|
||||
{
|
||||
text: "Book a Table",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Book a Table", href: "#contact"},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-young-redhead-curly-lady-standing-cafe_171337-16581.jpg",
|
||||
imageAlt: "Elegant restaurant interior with soft lighting",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-young-redhead-curly-lady-standing-cafe_171337-16581.jpg", imageAlt: "Elegant restaurant interior with soft lighting"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg",
|
||||
imageAlt: "Close-up of a perfectly plated pasta dish",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg", imageAlt: "Close-up of a perfectly plated pasta dish"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cake-with-chocolate-raisins-light-dark-background_140725-137788.jpg",
|
||||
imageAlt: "Decadent chocolate dessert with fresh berries",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cake-with-chocolate-raisins-light-dark-background_140725-137788.jpg", imageAlt: "Decadent chocolate dessert with fresh berries"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/refreshing-cocktail-decorated-with-dry-flowers_140725-8004.jpg",
|
||||
imageAlt: "A refreshing cocktail being prepared at the bar",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/refreshing-cocktail-decorated-with-dry-flowers_140725-8004.jpg", imageAlt: "A refreshing cocktail being prepared at the bar"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/focused-male-cook-garnishing-dish-with-freshly-cut-vegetables-stove_482257-127704.jpg",
|
||||
imageAlt: "Chef preparing a gourmet dish in a professional kitchen",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/focused-male-cook-garnishing-dish-with-freshly-cut-vegetables-stove_482257-127704.jpg", imageAlt: "Chef preparing a gourmet dish in a professional kitchen"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wine-bottle-with-goblets-pomegranates-rose-petals_176474-6101.jpg",
|
||||
imageAlt: "Wine glass on a beautifully set dining table",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wine-bottle-with-goblets-pomegranates-rose-petals_176474-6101.jpg", imageAlt: "Wine glass on a beautifully set dining table"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -119,14 +92,10 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
title="Our Passion for Culinary Excellence"
|
||||
description={[
|
||||
"At EATLI, we believe that dining is an experience to be savored. Our journey began with a simple vision: to create a place where exceptional food, warm ambiance, and impeccable service come together to craft memorable moments.",
|
||||
"Our chefs are dedicated artists, meticulously sourcing the finest seasonal ingredients and transforming them into exquisite dishes that tell a story. From classic comforts to innovative creations, every plate is a testament to our commitment to quality and flavor. Join us and discover the heart behind our kitchen.",
|
||||
]}
|
||||
"At EATLI, we believe that dining is an experience to be savored. Our journey began with a simple vision: to create a place where exceptional food, warm ambiance, and impeccable service come together to craft memorable moments.", "Our chefs are dedicated artists, meticulously sourcing the finest seasonal ingredients and transforming them into exquisite dishes that tell a story. From classic comforts to innovative creations, every plate is a testament to our commitment to quality and flavor. Join us and discover the heart behind our kitchen."]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "#",
|
||||
},
|
||||
text: "Learn More", href: "/about-us"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -138,32 +107,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "feature-1",
|
||||
title: "Seared Scallops with Saffron Risotto",
|
||||
descriptions: [
|
||||
"Perfectly seared, succulent scallops atop creamy saffron-infused risotto, garnished with fresh herbs and a drizzle of olive oil. A true taste of the Mediterranean.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fish-barbecue-with-green-dip-sauce-white-plate_114579-3425.jpg",
|
||||
imageAlt: "Seared scallops with saffron risotto",
|
||||
},
|
||||
id: "feature-1", title: "Seared Scallops with Saffron Risotto", descriptions: [
|
||||
"Perfectly seared, succulent scallops atop creamy saffron-infused risotto, garnished with fresh herbs and a drizzle of olive oil. A true taste of the Mediterranean."],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fish-barbecue-with-green-dip-sauce-white-plate_114579-3425.jpg", imageAlt: "Seared scallops with saffron risotto"},
|
||||
{
|
||||
id: "feature-2",
|
||||
title: "Grass-Fed Beef Tenderloin",
|
||||
descriptions: [
|
||||
"A tender cut of grass-fed beef tenderloin, grilled to your preference, served with asparagus, roasted new potatoes, and a rich red wine reduction. Elegance on a plate.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-wrap-served-with-roasted-vegetables-spinach-teriyaki-sauce_140725-544.jpg",
|
||||
imageAlt: "Grass-fed beef tenderloin with asparagus",
|
||||
},
|
||||
id: "feature-2", title: "Grass-Fed Beef Tenderloin", descriptions: [
|
||||
"A tender cut of grass-fed beef tenderloin, grilled to your preference, served with asparagus, roasted new potatoes, and a rich red wine reduction. Elegance on a plate."],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-wrap-served-with-roasted-vegetables-spinach-teriyaki-sauce_140725-544.jpg", imageAlt: "Grass-fed beef tenderloin with asparagus"},
|
||||
{
|
||||
id: "feature-3",
|
||||
title: "Seasonal Vegetable Wellington",
|
||||
descriptions: [
|
||||
"A delightful vegetarian option featuring a medley of seasonal vegetables baked in a flaky puff pastry, served with a vibrant roasted red pepper coulis. A feast for the senses.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/useful-dietary-salad-with-cottage-cheese-herbs-vegetables_2829-19869.jpg",
|
||||
imageAlt: "Seasonal vegetable wellington",
|
||||
},
|
||||
id: "feature-3", title: "Seasonal Vegetable Wellington", descriptions: [
|
||||
"A delightful vegetarian option featuring a medley of seasonal vegetables baked in a flaky puff pastry, served with a vibrant roasted red pepper coulis. A feast for the senses."],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/useful-dietary-salad-with-cottage-cheese-herbs-vegetables_2829-19869.jpg", imageAlt: "Seasonal vegetable wellington"},
|
||||
]}
|
||||
title="Signature Dishes & Culinary Highlights"
|
||||
description="Discover a selection of our most celebrated creations, crafted with passion and precision by our award-winning chefs. Each dish is a masterpiece designed to delight your palate."
|
||||
@@ -178,53 +132,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "menu-1",
|
||||
name: "Mushroom Truffle Risotto",
|
||||
price: "$28",
|
||||
variant: "Vegetarian",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pasta-with-sauce_140725-141.jpg",
|
||||
imageAlt: "Mushroom truffle risotto",
|
||||
},
|
||||
id: "menu-1", name: "Mushroom Truffle Risotto", price: "$28", variant: "Vegetarian", imageSrc: "http://img.b2bpic.net/free-photo/pasta-with-sauce_140725-141.jpg", imageAlt: "Mushroom truffle risotto"},
|
||||
{
|
||||
id: "menu-2",
|
||||
name: "Pan-Seared Salmon",
|
||||
price: "$32",
|
||||
variant: "Seafood",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-cutting-gourmet-chicken-breast_23-2148516895.jpg",
|
||||
imageAlt: "Pan-seared salmon",
|
||||
},
|
||||
id: "menu-2", name: "Pan-Seared Salmon", price: "$32", variant: "Seafood", imageSrc: "http://img.b2bpic.net/free-photo/person-cutting-gourmet-chicken-breast_23-2148516895.jpg", imageAlt: "Pan-seared salmon"},
|
||||
{
|
||||
id: "menu-3",
|
||||
name: "Spicy Chicken Curry",
|
||||
price: "$26",
|
||||
variant: "Spicy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/different-indian-food-wooden-background_1220-7967.jpg",
|
||||
imageAlt: "Spicy chicken curry",
|
||||
},
|
||||
id: "menu-3", name: "Spicy Chicken Curry", price: "$26", variant: "Spicy", imageSrc: "http://img.b2bpic.net/free-photo/different-indian-food-wooden-background_1220-7967.jpg", imageAlt: "Spicy chicken curry"},
|
||||
{
|
||||
id: "menu-4",
|
||||
name: "Braised Beef Short Ribs",
|
||||
price: "$38",
|
||||
variant: "Signature",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-fried-fish-fillet-with-herbs-vegetables-sauce-plate_141793-2974.jpg",
|
||||
imageAlt: "Braised beef short ribs",
|
||||
},
|
||||
id: "menu-4", name: "Braised Beef Short Ribs", price: "$38", variant: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/side-view-fried-fish-fillet-with-herbs-vegetables-sauce-plate_141793-2974.jpg", imageAlt: "Braised beef short ribs"},
|
||||
{
|
||||
id: "menu-5",
|
||||
name: "Mixed Berry Tart",
|
||||
price: "$12",
|
||||
variant: "Dessert",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-raspberry-cake-small-tarts-biscuits-bowl-with-raspberries-tree-branches-blue-table_140725-130014.jpg",
|
||||
imageAlt: "Mixed berry tart",
|
||||
},
|
||||
id: "menu-5", name: "Mixed Berry Tart", price: "$12", variant: "Dessert", imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-raspberry-cake-small-tarts-biscuits-bowl-with-raspberries-tree-branches-blue-table_140725-130014.jpg", imageAlt: "Mixed berry tart"},
|
||||
{
|
||||
id: "menu-6",
|
||||
name: "Vegetable Lasagna",
|
||||
price: "$24",
|
||||
variant: "Vegetarian",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cutting-food-with-melted-cheese-herbs-with-cutlery_114579-3461.jpg",
|
||||
imageAlt: "Vegetable lasagna",
|
||||
},
|
||||
id: "menu-6", name: "Vegetable Lasagna", price: "$24", variant: "Vegetarian", imageSrc: "http://img.b2bpic.net/free-photo/cutting-food-with-melted-cheese-herbs-with-cutlery_114579-3461.jpg", imageAlt: "Vegetable lasagna"},
|
||||
]}
|
||||
title="Explore Our Full Menu"
|
||||
description="From appetizers to desserts, our menu offers a diverse range of dishes to satisfy every craving. Hand-picked ingredients and innovative techniques define our culinary offerings."
|
||||
@@ -238,29 +156,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "metric-1",
|
||||
value: "15+",
|
||||
title: "Years of Excellence",
|
||||
description: "Delivering unforgettable dining experiences since 2008.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-happy-expression_1194-1460.jpg",
|
||||
imageAlt: "Award trophy",
|
||||
},
|
||||
id: "metric-1", value: "15+", title: "Years of Excellence", description: "Delivering unforgettable dining experiences since 2008.", imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-happy-expression_1194-1460.jpg", imageAlt: "Award trophy"},
|
||||
{
|
||||
id: "metric-2",
|
||||
value: "50+",
|
||||
title: "Award-Winning Chefs",
|
||||
description: "Our culinary team boasts renowned experts and rising stars.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-happy-expression_1194-1349.jpg",
|
||||
imageAlt: "Chef's hat",
|
||||
},
|
||||
id: "metric-2", value: "50+", title: "Award-Winning Chefs", description: "Our culinary team boasts renowned experts and rising stars.", imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-happy-expression_1194-1349.jpg", imageAlt: "Chef's hat"},
|
||||
{
|
||||
id: "metric-3",
|
||||
value: "10K+",
|
||||
title: "Happy Customers",
|
||||
description: "Thousands of satisfied diners have enjoyed our hospitality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-pizza-medium-shot_23-2149872407.jpg",
|
||||
imageAlt: "Smiling customer",
|
||||
},
|
||||
id: "metric-3", value: "10K+", title: "Happy Customers", description: "Thousands of satisfied diners have enjoyed our hospitality.", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-pizza-medium-shot_23-2149872407.jpg", imageAlt: "Smiling customer"},
|
||||
]}
|
||||
title="Why EATLI is Your Top Choice"
|
||||
description="Our commitment to quality, innovation, and customer satisfaction sets us apart. Discover what makes EATLI a beloved dining destination."
|
||||
@@ -274,45 +174,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "testimonial-1",
|
||||
name: "Sarah J.",
|
||||
handle: "@sarah_foodie",
|
||||
testimonial: "EATLI is simply the best restaurant in town! Every dish is a culinary masterpiece, and the ambiance is perfect for any occasion. Highly recommend the truffle pasta!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-one-black-american-female-eats-gourmet-vegetarian-meal-drinks-wine-restaurant_613910-7365.jpg",
|
||||
imageAlt: "Portrait of Sarah J.",
|
||||
},
|
||||
id: "testimonial-1", name: "Sarah J.", handle: "@sarah_foodie", testimonial: "EATLI is simply the best restaurant in town! Every dish is a culinary masterpiece, and the ambiance is perfect for any occasion. Highly recommend the truffle pasta!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-one-black-american-female-eats-gourmet-vegetarian-meal-drinks-wine-restaurant_613910-7365.jpg", imageAlt: "Portrait of Sarah J."},
|
||||
{
|
||||
id: "testimonial-2",
|
||||
name: "Mark D.",
|
||||
handle: "@dining_mark",
|
||||
testimonial: "An outstanding dining experience from start to finish. The service was impeccable, and the wine pairing suggestions were spot on. I'll definitely be back for their steak.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-announcing-pregnancy-dinner-with-friends_23-2150167460.jpg",
|
||||
imageAlt: "Portrait of Mark D.",
|
||||
},
|
||||
id: "testimonial-2", name: "Mark D.", handle: "@dining_mark", testimonial: "An outstanding dining experience from start to finish. The service was impeccable, and the wine pairing suggestions were spot on. I'll definitely be back for their steak.", imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-announcing-pregnancy-dinner-with-friends_23-2150167460.jpg", imageAlt: "Portrait of Mark D."},
|
||||
{
|
||||
id: "testimonial-3",
|
||||
name: "Emily R.",
|
||||
handle: "@emily_eats",
|
||||
testimonial: "Such a delightful evening at EATLI! The desserts are to die for, especially the berry tart. A must-visit for anyone looking for a memorable meal.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-having-fun-night_23-2149236925.jpg",
|
||||
imageAlt: "Portrait of Emily R.",
|
||||
},
|
||||
id: "testimonial-3", name: "Emily R.", handle: "@emily_eats", testimonial: "Such a delightful evening at EATLI! The desserts are to die for, especially the berry tart. A must-visit for anyone looking for a memorable meal.", imageSrc: "http://img.b2bpic.net/free-photo/couple-having-fun-night_23-2149236925.jpg", imageAlt: "Portrait of Emily R."},
|
||||
{
|
||||
id: "testimonial-4",
|
||||
name: "David L.",
|
||||
handle: "@gourmet_guy",
|
||||
testimonial: "The attention to detail at EATLI is incredible. From the fresh ingredients to the beautiful presentation, everything was perfect. A true gem!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-eyeglasses-taking-selfie-from-mobile-phone-restaurant_23-2147871308.jpg",
|
||||
imageAlt: "Portrait of David L.",
|
||||
},
|
||||
id: "testimonial-4", name: "David L.", handle: "@gourmet_guy", testimonial: "The attention to detail at EATLI is incredible. From the fresh ingredients to the beautiful presentation, everything was perfect. A true gem!", imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-eyeglasses-taking-selfie-from-mobile-phone-restaurant_23-2147871308.jpg", imageAlt: "Portrait of David L."},
|
||||
{
|
||||
id: "testimonial-5",
|
||||
name: "Jessica M.",
|
||||
handle: "@jess_travels",
|
||||
testimonial: "Visited EATLI on a recommendation and was blown away! The atmosphere is so welcoming, and the staff made us feel right at home. The salmon dish was superb.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dinner-set-sushi-rolls-salads-cocktails-hookah-side-view_141793-3100.jpg",
|
||||
imageAlt: "Portrait of Jessica M.",
|
||||
},
|
||||
id: "testimonial-5", name: "Jessica M.", handle: "@jess_travels", testimonial: "Visited EATLI on a recommendation and was blown away! The atmosphere is so welcoming, and the staff made us feel right at home. The salmon dish was superb.", imageSrc: "http://img.b2bpic.net/free-photo/dinner-set-sushi-rolls-salads-cocktails-hookah-side-view_141793-3100.jpg", imageAlt: "Portrait of Jessica M."},
|
||||
]}
|
||||
title="Hear From Our Happy Customers"
|
||||
description="Our patrons love the EATLI experience. Read what they have to say about our food, service, and atmosphere."
|
||||
@@ -326,14 +196,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Foodie Review",
|
||||
"Local Eats Magazine",
|
||||
"Gourmet Guide",
|
||||
"Culinary Times",
|
||||
"Chef's Choice Awards",
|
||||
"DineOut Daily",
|
||||
"Taste Adventures",
|
||||
]}
|
||||
"Foodie Review", "Local Eats Magazine", "Gourmet Guide", "Culinary Times", "Chef's Choice Awards", "DineOut Daily", "Taste Adventures"]}
|
||||
title="As Featured In & Trusted By"
|
||||
description="EATLI is proud to be recognized by leading culinary critics, media outlets, and trusted by our esteemed partners."
|
||||
speed={40}
|
||||
@@ -347,30 +210,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1",
|
||||
title: "How do I make a reservation?",
|
||||
content: "Reservations can be made directly through our website's 'Contact' section, or by calling us during opening hours. We recommend booking in advance, especially for weekend evenings.",
|
||||
},
|
||||
id: "faq-1", title: "How do I make a reservation?", content: "Reservations can be made directly through our website's 'Contact' section, or by calling us during opening hours. We recommend booking in advance, especially for weekend evenings."},
|
||||
{
|
||||
id: "faq-2",
|
||||
title: "Do you offer vegetarian or vegan options?",
|
||||
content: "Yes, our menu includes a variety of thoughtfully crafted vegetarian and vegan dishes. Please inform your server about any dietary restrictions or preferences when ordering.",
|
||||
},
|
||||
id: "faq-2", title: "Do you offer vegetarian or vegan options?", content: "Yes, our menu includes a variety of thoughtfully crafted vegetarian and vegan dishes. Please inform your server about any dietary restrictions or preferences when ordering."},
|
||||
{
|
||||
id: "faq-3",
|
||||
title: "Can you accommodate food allergies?",
|
||||
content: "Absolutely. We take food allergies very seriously. Please notify us of any allergies when making your reservation or upon arrival, and our kitchen team will do their best to accommodate you safely.",
|
||||
},
|
||||
id: "faq-3", title: "Can you accommodate food allergies?", content: "Absolutely. We take food allergies very seriously. Please notify us of any allergies when making your reservation or upon arrival, and our kitchen team will do their best to accommodate you safely."},
|
||||
{
|
||||
id: "faq-4",
|
||||
title: "Do you have a private dining area for events?",
|
||||
content: "Yes, EATLI offers a private dining room perfect for intimate gatherings, corporate events, or celebrations. Please contact us to discuss your event requirements and availability.",
|
||||
},
|
||||
id: "faq-4", title: "Do you have a private dining area for events?", content: "Yes, EATLI offers a private dining room perfect for intimate gatherings, corporate events, or celebrations. Please contact us to discuss your event requirements and availability."},
|
||||
{
|
||||
id: "faq-5",
|
||||
title: "What are your opening hours?",
|
||||
content: "We are open Tuesday to Sunday, from 5:00 PM to 10:00 PM for dinner. Lunch service is available on Fridays, Saturdays, and Sundays from 12:00 PM to 2:30 PM. We are closed on Mondays.",
|
||||
},
|
||||
id: "faq-5", title: "What are your opening hours?", content: "We are open Tuesday to Sunday, from 5:00 PM to 10:00 PM for dinner. Lunch service is available on Fridays, Saturdays, and Sundays from 12:00 PM to 2:30 PM. We are closed on Mondays."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions about reservations, menu, events, and more to ensure a smooth dining experience."
|
||||
@@ -382,18 +230,13 @@ export default function LandingPage() {
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "rotated-rays-animated-grid",
|
||||
}}
|
||||
variant: "rotated-rays-animated-grid"}}
|
||||
text="Ready to Savor the EATLI Experience? Book Your Table Today!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Make a Reservation",
|
||||
href: "#",
|
||||
},
|
||||
text: "Make a Reservation", href: "#"},
|
||||
{
|
||||
text: "Call Us: (123) 456-7890",
|
||||
href: "tel:+1234567890",
|
||||
},
|
||||
text: "Call Us: (123) 456-7890", href: "tel:+1234567890"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -405,66 +248,43 @@ export default function LandingPage() {
|
||||
logoText="EATLI Restaurant"
|
||||
columns={[
|
||||
{
|
||||
title: "Explore",
|
||||
items: [
|
||||
title: "Explore", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#home",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Menu", href: "#menu"},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About Us", href: "/about-us"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Gallery", href: "/gallery"},
|
||||
{
|
||||
label: "Reviews", href: "/reviews"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Our Offerings",
|
||||
items: [
|
||||
title: "Our Offerings", items: [
|
||||
{
|
||||
label: "Dinner Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Dinner Menu", href: "#menu"},
|
||||
{
|
||||
label: "Lunch Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Lunch Menu", href: "#menu"},
|
||||
{
|
||||
label: "Wine List",
|
||||
href: "#",
|
||||
},
|
||||
label: "Wine List", href: "#"},
|
||||
{
|
||||
label: "Private Events",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Private Events", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Reservations",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Reservations", href: "#contact"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
label: "Careers", href: "#"},
|
||||
{
|
||||
label: "Press",
|
||||
href: "#social-proof",
|
||||
},
|
||||
label: "Press", href: "#social-proof"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#faq",
|
||||
},
|
||||
label: "FAQ", href: "#faq"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f5f5f5;
|
||||
--card: #ffffff;
|
||||
--foreground: #1c1c1c;
|
||||
--primary-cta: #1c1c1c;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #333333;
|
||||
--primary-cta: #ff6600;
|
||||
--primary-cta-text: #f5f5f5;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta: #f0f0f0;
|
||||
--secondary-cta-text: #1c1c1c;
|
||||
--accent: #15479c;
|
||||
--background-accent: #a8cce8;
|
||||
--accent: #ff9933;
|
||||
--background-accent: #ffe0b2;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user