Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3600b1fa3e | |||
| dcb619a570 | |||
| 629115f4ac | |||
| 89e230dfb9 | |||
| ab1e8f5b71 | |||
| 490ba14b67 |
164
src/app/menu/page.tsx
Normal file
164
src/app/menu/page.tsx
Normal file
@@ -0,0 +1,164 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
|
|
||||||
|
export default function MenuPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="hover-bubble"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="soft"
|
||||||
|
contentWidth="mediumSmall"
|
||||||
|
sizing="largeSmallSizeMediumTitles"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="subtle-shadow"
|
||||||
|
primaryButtonStyle="diagonal-gradient"
|
||||||
|
secondaryButtonStyle="layered"
|
||||||
|
headingFontWeight="bold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{
|
||||||
|
name: "Home", id: "hero"},
|
||||||
|
{
|
||||||
|
name: "Our Story", id: "about"},
|
||||||
|
{
|
||||||
|
name: "Menu", id: "/menu"},
|
||||||
|
{
|
||||||
|
name: "Testimonials", id: "testimonials"},
|
||||||
|
{
|
||||||
|
name: "Gallery", id: "gallery"},
|
||||||
|
{
|
||||||
|
name: "Loyalty", id: "loyalty"},
|
||||||
|
{
|
||||||
|
name: "Visit Us", id: "contact"},
|
||||||
|
]}
|
||||||
|
brandName="El Sabor Peruano"
|
||||||
|
button={{
|
||||||
|
text: "Order / Reserve", href: "/contact"}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="menu-items" data-section="menu-items">
|
||||||
|
<ProductCardTwo
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
gridVariant="three-columns-all-equal-width"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
products={[
|
||||||
|
{
|
||||||
|
id: "lomo-saltado", brand: "Peruvian Classic", name: "Lomo Saltado", price: "$25.99", rating: 5,
|
||||||
|
reviewCount: "300+", imageSrc: "http://img.b2bpic.net/free-photo/lamb-steak-french-fries-melted-cheese_140725-6690.jpg", imageAlt: "Classic Peruvian beef stir-fry with fries and rice"},
|
||||||
|
{
|
||||||
|
id: "arroz-con-mariscos-jalea", brand: "Seafood Feast", name: "Arroz Con Mariscos Y Jalea", price: "$32.99", rating: 5,
|
||||||
|
reviewCount: "250+", imageSrc: "http://img.b2bpic.net/free-photo/pad-thai-fresh-shrimp-white-plate_1150-22371.jpg", imageAlt: "Peruvian seafood rice with fried calamari"},
|
||||||
|
{
|
||||||
|
id: "ceviche-mixto", brand: "Signature Ceviche", name: "Ceviche Mixto", price: "$28.99", rating: 5,
|
||||||
|
reviewCount: "400+", imageSrc: "http://img.b2bpic.net/free-photo/raw-fresh-tuna-meat-with-sesame-salad_74190-5982.jpg", imageAlt: "Mixed seafood ceviche, fresh and zesty"},
|
||||||
|
{
|
||||||
|
id: "arroz-con-pollo", brand: "Comfort Food", name: "Arroz Con Pollo", price: "$22.99", rating: 4,
|
||||||
|
reviewCount: "180+", imageSrc: "http://img.b2bpic.net/free-photo/chicken-served-with-potatoes-carrots-lettuce_140725-7791.jpg", imageAlt: "Peruvian style chicken and rice"},
|
||||||
|
{
|
||||||
|
id: "pollo-ala-brasa", brand: "Peruvian Rotisserie", name: "Pollo Ala Brasa Con Arroz Y Ensalada", price: "$21.99", rating: 5,
|
||||||
|
reviewCount: "350+", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-compost-made-rotten-food-with-copy-space_23-2149073768.jpg?_wi=2", imageAlt: "Grilled chicken with rice and salad"},
|
||||||
|
{
|
||||||
|
id: "rico-salmon", brand: "Healthy Option", name: "Rico Salmon", price: "$27.99", rating: 4,
|
||||||
|
reviewCount: "120+", imageSrc: "http://img.b2bpic.net/free-photo/grilled-salmon-with-asparagus_23-2147772591.jpg", imageAlt: "Delicious grilled salmon"},
|
||||||
|
{
|
||||||
|
id: "french-fries", brand: "Side Dish", name: "French Fries", price: "$7.99", rating: 4,
|
||||||
|
reviewCount: "100+", imageSrc: "http://img.b2bpic.net/free-photo/golden-crispy-fries_1339-4757.jpg", imageAlt: "Crispy golden French fries"},
|
||||||
|
{
|
||||||
|
id: "fried-rice", brand: "Asian Fusion", name: "Fried Rice", price: "$14.99", rating: 4,
|
||||||
|
reviewCount: "90+", imageSrc: "http://img.b2bpic.net/free-photo/american-fried-rice_1339-4757.jpg", imageAlt: "Savory Asian style fried rice"},
|
||||||
|
{
|
||||||
|
id: "aji-de-gallina", brand: "Creamy Delight", name: "Aji de Gallina", price: "$23.99", rating: 5,
|
||||||
|
reviewCount: "200+", imageSrc: "http://img.b2bpic.net/free-photo/aji-de-gallina_23-2148967584.jpg", imageAlt: "Creamy chicken stew, a Peruvian favorite"},
|
||||||
|
{
|
||||||
|
id: "pescado-frito", brand: "Fried Fish", name: "Pescado Frito", price: "$26.99", rating: 4,
|
||||||
|
reviewCount: "150+", imageSrc: "http://img.b2bpic.net/free-photo/fried-fish_23-2148767939.jpg", imageAlt: "Crispy fried whole fish"},
|
||||||
|
{
|
||||||
|
id: "ceviche-con-jalea", brand: "Ceviche Combo", name: "Ceviche Con Jalea", price: "$30.99", rating: 5,
|
||||||
|
reviewCount: "190+", imageSrc: "http://img.b2bpic.net/free-photo/fried-clams-with-white-wine_74190-556.jpg?_wi=2", imageAlt: "Ceviche with a side of fried seafood mix"},
|
||||||
|
{
|
||||||
|
id: "sopa-de-pescado", brand: "Hearty Soup", name: "Sopa de Pescado", price: "$18.99", rating: 4,
|
||||||
|
reviewCount: "80+", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-delicious-chinese-food-dark-background_24972-2164.jpg", imageAlt: "Flavorful Peruvian fish soup"},
|
||||||
|
{
|
||||||
|
id: "ocopa", brand: "Andean Appetizer", name: "Ocopa", price: "$11.99", rating: 4,
|
||||||
|
reviewCount: "60+", imageSrc: "http://img.b2bpic.net/free-photo/potatoes-with-cheese-sauce_23-2149503375.jpg", imageAlt: "Potatoes with creamy huacatay sauce"},
|
||||||
|
{
|
||||||
|
id: "frijoles-con-seco", brand: "Traditional Plate", name: "Frijoles Con Seco", price: "$24.99", rating: 4,
|
||||||
|
reviewCount: "110+", imageSrc: "http://img.b2bpic.net/free-photo/rice-with-squid_1232-2620.jpg", imageAlt: "Beans with slow-cooked beef stew"},
|
||||||
|
{
|
||||||
|
id: "ceviche-pescado-camaron", brand: "Deluxe Ceviche", name: "Ceviche Pescado Y Camarón", price: "$29.99", rating: 5,
|
||||||
|
reviewCount: "220+", imageSrc: "http://img.b2bpic.net/free-photo/shrimp-fish-sauce_1203-9136.jpg?_wi=2", imageAlt: "Fish and shrimp ceviche"},
|
||||||
|
{
|
||||||
|
id: "sashimi", brand: "Japanese Fusion", name: "Sashimi", price: "$20.99", rating: 4,
|
||||||
|
reviewCount: "70+", imageSrc: "http://img.b2bpic.net/free-photo/sushi-nigiri-sashimi-set-with-tuna-salmon-shrimp_1339-3837.jpg", imageAlt: "Fresh sashimi slices"},
|
||||||
|
{
|
||||||
|
id: "bouillabaisse", brand: "French Inspired", name: "Bouillabaisse", price: "$35.99", rating: 5,
|
||||||
|
reviewCount: "50+", imageSrc: "http://img.b2bpic.net/free-photo/seafood-stew_23-2147717462.jpg", imageAlt: "Rich French seafood stew"},
|
||||||
|
{
|
||||||
|
id: "ramen", brand: "Noodle Soup", name: "Ramen", price: "$17.99", rating: 4,
|
||||||
|
reviewCount: "100+", imageSrc: "http://img.b2bpic.net/free-photo/top-view-ramen-bowl_23-2149179048.jpg", imageAlt: "Delicious Japanese ramen noodles"}
|
||||||
|
]}
|
||||||
|
title="Our Delicious Menu"
|
||||||
|
description="Explore a wide variety of authentic Peruvian and international dishes, crafted with the freshest ingredients."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterMedia
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/beautiful-shot-people-standing-deck-surrounded-by-water-sunset_181624-19278.jpg?_wi=2"
|
||||||
|
imageAlt="Coastal Peruvian landscape at sunset"
|
||||||
|
logoText="El Sabor Peruano"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Explore", items: [
|
||||||
|
{
|
||||||
|
label: "Home", href: "/"},
|
||||||
|
{
|
||||||
|
label: "Our Story", href: "/"},
|
||||||
|
{
|
||||||
|
label: "Menu", href: "/menu"},
|
||||||
|
{
|
||||||
|
label: "Gallery", href: "/"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Connect", items: [
|
||||||
|
{
|
||||||
|
label: "Contact Us", href: "/"},
|
||||||
|
{
|
||||||
|
label: "Order Online", href: "/"},
|
||||||
|
{
|
||||||
|
label: "Reservations", href: "/"},
|
||||||
|
{
|
||||||
|
label: "Facebook", href: "#"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{
|
||||||
|
label: "Privacy Policy", href: "#"},
|
||||||
|
{
|
||||||
|
label: "Terms of Service", href: "#"},
|
||||||
|
{
|
||||||
|
label: "Accessibility", href: "#"},
|
||||||
|
{
|
||||||
|
label: "FAQ", href: "#"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
copyrightText="© 2024 El Sabor Peruano. All rights reserved."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
279
src/app/page.tsx
279
src/app/page.tsx
@@ -9,7 +9,7 @@ import HeroLogo from '@/components/sections/hero/HeroLogo';
|
|||||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
|
||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||||
import { Globe, Star, Users } from "lucide-react";
|
import { Globe, Star, Users } from "lucide-react";
|
||||||
|
|
||||||
@@ -32,39 +32,23 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Our Story",
|
name: "Our Story", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "/menu"},
|
||||||
id: "dishes",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Testimonials",
|
name: "Testimonials", id: "testimonials"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Gallery",
|
name: "Gallery", id: "gallery"},
|
||||||
id: "gallery",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Loyalty",
|
name: "Loyalty", id: "loyalty"},
|
||||||
id: "loyalty",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Visit Us",
|
name: "Visit Us", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="El Sabor Peruano"
|
brandName="El Sabor Peruano"
|
||||||
button={{
|
button={{
|
||||||
text: "Order / Reserve",
|
text: "Order / Reserve", href: "#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -74,16 +58,12 @@ export default function LandingPage() {
|
|||||||
description="Authentic Peruvian Flavor. Always Fresh. Always Generous."
|
description="Authentic Peruvian Flavor. Always Fresh. Always Generous."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Order Now",
|
text: "Order Now", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Reserve a Table",
|
text: "Reserve a Table", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="opacity"
|
buttonAnimation="opacity"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/shrimp-fish-sauce_1203-9136.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/shrimp-fish-sauce_1203-9136.jpg?_wi=1"
|
||||||
imageAlt="Vibrant Peruvian ceviche platter being plated"
|
imageAlt="Vibrant Peruvian ceviche platter being plated"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -95,17 +75,11 @@ export default function LandingPage() {
|
|||||||
description="El Sabor Peruano is more than a restaurant; it's a labor of love, born from our family's deep roots in Peru and a passion for sharing our rich culinary heritage. Every dish is a tribute to our homeland, crafted with traditional recipes and the freshest ingredients, just like abuela used to make. We treat every guest like family, ensuring a warm, welcoming experience with every visit."
|
description="El Sabor Peruano is more than a restaurant; it's a labor of love, born from our family's deep roots in Peru and a passion for sharing our rich culinary heritage. Every dish is a tribute to our homeland, crafted with traditional recipes and the freshest ingredients, just like abuela used to make. We treat every guest like family, ensuring a warm, welcoming experience with every visit."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
value: "20+",
|
value: "20+", title: "Years of Culinary Tradition"},
|
||||||
title: "Years of Culinary Tradition",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "5/5",
|
value: "5/5", title: "Customer Rating Excellence"},
|
||||||
title: "Customer Rating Excellence",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "100%",
|
value: "100%", title: "Fresh Seafood Daily"},
|
||||||
title: "Fresh Seafood Daily",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/pov-client-advertises-organic-farming_482257-80727.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/pov-client-advertises-organic-farming_482257-80727.jpg"
|
||||||
imageAlt="The family owners of El Sabor Peruano smiling warmly"
|
imageAlt="The family owners of El Sabor Peruano smiling warmly"
|
||||||
@@ -114,78 +88,6 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="dishes" data-section="dishes">
|
|
||||||
<ProductCardTwo
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
gridVariant="three-columns-all-equal-width"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
products={[
|
|
||||||
{
|
|
||||||
id: "p1",
|
|
||||||
brand: "Classic",
|
|
||||||
name: "Ceviche Mixto",
|
|
||||||
price: "$24.99",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "250+",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/raw-fresh-tuna-meat-with-sesame-salad_74190-5982.jpg",
|
|
||||||
imageAlt: "Vibrant Peruvian mixed seafood ceviche",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p2",
|
|
||||||
brand: "Signature",
|
|
||||||
name: "Arroz con Mariscos",
|
|
||||||
price: "$28.99",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "180+",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/pad-thai-fresh-shrimp-white-plate_1150-22371.jpg",
|
|
||||||
imageAlt: "Rich Peruvian seafood rice",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p3",
|
|
||||||
brand: "Popular",
|
|
||||||
name: "Arroz Chaufa",
|
|
||||||
price: "$19.99",
|
|
||||||
rating: 4,
|
|
||||||
reviewCount: "120+",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/american-fried-rice_1339-4757.jpg",
|
|
||||||
imageAlt: "Flavorful Peruvian fried rice",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p4",
|
|
||||||
brand: "Appetizer",
|
|
||||||
name: "Fried Calamari",
|
|
||||||
price: "$16.99",
|
|
||||||
rating: 4,
|
|
||||||
reviewCount: "90+",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/calamari-ring_74190-4731.jpg",
|
|
||||||
imageAlt: "Crispy golden fried calamari",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p5",
|
|
||||||
brand: "Spicy",
|
|
||||||
name: "Parihuela",
|
|
||||||
price: "$32.99",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "75+",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-delicious-chinese-food-dark-background_24972-2164.jpg",
|
|
||||||
imageAlt: "Spicy Peruvian seafood stew",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p6",
|
|
||||||
brand: "Hearty",
|
|
||||||
name: "Lomo Saltado",
|
|
||||||
price: "$26.99",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "150+",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/lamb-steak-french-fries-melted-cheese_140725-6690.jpg",
|
|
||||||
imageAlt: "Classic Peruvian beef stir-fry",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
title="Taste Our Signature Peruvian Flavors"
|
|
||||||
description="Indulge in our exquisite menu, featuring the freshest seafood and authentic Peruvian recipes. From zesty ceviche to hearty rice dishes, every plate is a culinary journey."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardFifteen
|
||||||
@@ -195,25 +97,15 @@ export default function LandingPage() {
|
|||||||
author="Loyal Regular - Maria S."
|
author="Loyal Regular - Maria S."
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/woman-enjoying-80s-summer-aesthetics_23-2150765091.jpg",
|
src: "http://img.b2bpic.net/free-photo/woman-enjoying-80s-summer-aesthetics_23-2150765091.jpg", alt: "Maria S. Avatar"},
|
||||||
alt: "Maria S. Avatar",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-happy-young-man-bed_23-2147862652.jpg",
|
src: "http://img.b2bpic.net/free-photo/portrait-happy-young-man-bed_23-2147862652.jpg", alt: "Carlos R. Avatar"},
|
||||||
alt: "Carlos R. Avatar",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/medium-shot-happy-couple-hugging-indoors_23-2148334680.jpg",
|
src: "http://img.b2bpic.net/free-photo/medium-shot-happy-couple-hugging-indoors_23-2148334680.jpg", alt: "The Johnson Family Avatar"},
|
||||||
alt: "The Johnson Family Avatar",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/smiling-handsome-bearded-african-american-businessman-brown-classic-jacket-isolated-dark-background_613910-6626.jpg",
|
src: "http://img.b2bpic.net/free-photo/smiling-handsome-bearded-african-american-businessman-brown-classic-jacket-isolated-dark-background_613910-6626.jpg", alt: "Sofia L. Avatar"},
|
||||||
alt: "Sofia L. Avatar",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/young-girl-with-curly-hair-looking-straight-ahead-as-she-embraces-her-partner-with-unfocused-sea_138670-144.jpg",
|
src: "http://img.b2bpic.net/free-photo/young-girl-with-curly-hair-looking-straight-ahead-as-she-embraces-her-partner-with-unfocused-sea_138670-144.jpg", alt: "David C. Avatar"},
|
||||||
alt: "David C. Avatar",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
ratingAnimation="blur-reveal"
|
ratingAnimation="blur-reveal"
|
||||||
avatarsAnimation="slide-up"
|
avatarsAnimation="slide-up"
|
||||||
@@ -228,53 +120,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Our Inviting Dining Space",
|
title: "Our Inviting Dining Space", description: "A warm and welcoming ambiance for family and friends.", imageSrc: "http://img.b2bpic.net/free-photo/happy-people-enjoying-meal-together_23-2147668874.jpg", imageAlt: "Cozy Peruvian restaurant interior with warm lighting", titleImageSrc: "http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-6425.jpg", buttonText: "View More"},
|
||||||
description: "A warm and welcoming ambiance for family and friends.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-people-enjoying-meal-together_23-2147668874.jpg",
|
|
||||||
imageAlt: "Cozy Peruvian restaurant interior with warm lighting",
|
|
||||||
titleImageSrc: "http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-6425.jpg",
|
|
||||||
buttonText: "View More",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Ceviche Plating Artistry",
|
title: "Ceviche Plating Artistry", description: "Every dish is prepared with passion and precision.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-chef-covering-fish-slices-with-flour-fresh-vegetables-wood-board-flour-bowl-kitchen-table_179666-44279.jpg", imageAlt: "Peruvian chef cooking fresh seafood in the kitchen", titleImageSrc: "http://img.b2bpic.net/free-photo/male-chef-cutting-eggplant-wooden-board-uniform-apron-kitchen_176474-8974.jpg", buttonText: "View More"},
|
||||||
description: "Every dish is prepared with passion and precision.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-chef-covering-fish-slices-with-flour-fresh-vegetables-wood-board-flour-bowl-kitchen-table_179666-44279.jpg",
|
|
||||||
imageAlt: "Peruvian chef cooking fresh seafood in the kitchen",
|
|
||||||
titleImageSrc: "http://img.b2bpic.net/free-photo/male-chef-cutting-eggplant-wooden-board-uniform-apron-kitchen_176474-8974.jpg",
|
|
||||||
buttonText: "View More",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Colorful Seafood Platters",
|
title: "Colorful Seafood Platters", description: "Generous portions of the freshest seafood, beautifully presented.", imageSrc: "http://img.b2bpic.net/free-photo/fried-clams-with-white-wine_74190-556.jpg?_wi=1", imageAlt: "Large Peruvian seafood platter for sharing", titleImageSrc: "http://img.b2bpic.net/free-photo/chicken-served-with-potatoes-carrots-lettuce_140725-7791.jpg", buttonText: "View More"},
|
||||||
description: "Generous portions of the freshest seafood, beautifully presented.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-clams-with-white-wine_74190-556.jpg",
|
|
||||||
imageAlt: "Large Peruvian seafood platter for sharing",
|
|
||||||
titleImageSrc: "http://img.b2bpic.net/free-photo/chicken-served-with-potatoes-carrots-lettuce_140725-7791.jpg",
|
|
||||||
buttonText: "View More",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Authentic Peruvian Dishes",
|
title: "Authentic Peruvian Dishes", description: "Explore a variety of traditional dishes, rich in flavor.", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-compost-made-rotten-food-with-copy-space_23-2149073768.jpg?_wi=1", imageAlt: "Close-up of a vibrant Peruvian dish", titleImageSrc: "http://img.b2bpic.net/free-photo/rice-with-squid_1232-2620.jpg", buttonText: "View More"},
|
||||||
description: "Explore a variety of traditional dishes, rich in flavor.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-compost-made-rotten-food-with-copy-space_23-2149073768.jpg",
|
|
||||||
imageAlt: "Close-up of a vibrant Peruvian dish",
|
|
||||||
titleImageSrc: "http://img.b2bpic.net/free-photo/rice-with-squid_1232-2620.jpg",
|
|
||||||
buttonText: "View More",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Relaxing Bar Area",
|
title: "Relaxing Bar Area", description: "Enjoy a Pisco Sour or a refreshing drink in our cozy bar.", imageSrc: "http://img.b2bpic.net/free-photo/hookah-sparksfrom-grapefruit-hookah-bowl_141793-3261.jpg", imageAlt: "Restaurant bar area with ambient lighting", titleImageSrc: "http://img.b2bpic.net/free-photo/brewery-pub-alcohol-night-drinking-glass_1122-2253.jpg", buttonText: "View More"},
|
||||||
description: "Enjoy a Pisco Sour or a refreshing drink in our cozy bar.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/hookah-sparksfrom-grapefruit-hookah-bowl_141793-3261.jpg",
|
|
||||||
imageAlt: "Restaurant bar area with ambient lighting",
|
|
||||||
titleImageSrc: "http://img.b2bpic.net/free-photo/brewery-pub-alcohol-night-drinking-glass_1122-2253.jpg",
|
|
||||||
buttonText: "View More",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Happy Diners, Family Vibes",
|
title: "Happy Diners, Family Vibes", description: "Our guests enjoying the food and company in a lively atmosphere.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-together_23-2149152898.jpg", imageAlt: "Happy customers dining in a Peruvian restaurant", titleImageSrc: "http://img.b2bpic.net/free-photo/happy-friends-sitting-cafe_23-2148422400.jpg", buttonText: "View More"},
|
||||||
description: "Our guests enjoying the food and company in a lively atmosphere.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-together_23-2149152898.jpg",
|
|
||||||
imageAlt: "Happy customers dining in a Peruvian restaurant",
|
|
||||||
titleImageSrc: "http://img.b2bpic.net/free-photo/happy-friends-sitting-cafe_23-2148422400.jpg",
|
|
||||||
buttonText: "View More",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Experience the Vibrant Heart of Peru"
|
title="Experience the Vibrant Heart of Peru"
|
||||||
description="Step into El Sabor Peruano and immerse yourself in the lively atmosphere and rich flavors. Our gallery offers a glimpse into our beautiful dishes and welcoming dining space."
|
description="Step into El Sabor Peruano and immerse yourself in the lively atmosphere and rich flavors. Our gallery offers a glimpse into our beautiful dishes and welcoming dining space."
|
||||||
@@ -288,23 +144,14 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", icon: Users,
|
||||||
icon: Users,
|
title: "Weekly Regulars", value: "200+"},
|
||||||
title: "Weekly Regulars",
|
|
||||||
value: "200+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", icon: Star,
|
||||||
icon: Star,
|
title: "Years of Loyalty", value: "3-4+"},
|
||||||
title: "Years of Loyalty",
|
|
||||||
value: "3-4+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", icon: Globe,
|
||||||
icon: Globe,
|
title: "Destination Visitors", value: "Worldwide"},
|
||||||
title: "Destination Visitors",
|
|
||||||
value: "Worldwide",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Family of Loyal Customers"
|
title="Our Family of Loyal Customers"
|
||||||
description="We are proud to be a destination for dedicated regulars and visitors alike, a testament to our consistent quality and heartfelt hospitality."
|
description="We are proud to be a destination for dedicated regulars and visitors alike, a testament to our consistent quality and heartfelt hospitality."
|
||||||
@@ -315,8 +162,7 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Visit Us"
|
tag="Visit Us"
|
||||||
title="Location, Hours & Ordering"
|
title="Location, Hours & Ordering"
|
||||||
description="Find us at our beloved spot or easily order online for pickup and delivery. We're open Tuesday-Sunday: 11 AM - 9 PM. For reservations, please call us directly. We look forward to serving you!"
|
description="Find us at our beloved spot or easily order online for pickup and delivery. We're open Tuesday-Sunday: 11 AM - 9 PM. For reservations, please call us directly. We look forward to serving you!"
|
||||||
@@ -332,71 +178,44 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterMedia
|
<FooterMedia
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-shot-people-standing-deck-surrounded-by-water-sunset_181624-19278.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/beautiful-shot-people-standing-deck-surrounded-by-water-sunset_181624-19278.jpg?_wi=1"
|
||||||
imageAlt="Coastal Peruvian landscape at sunset"
|
imageAlt="Coastal Peruvian landscape at sunset"
|
||||||
logoText="El Sabor Peruano"
|
logoText="El Sabor Peruano"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Explore",
|
title: "Explore", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Home",
|
label: "Home", href: "#hero"},
|
||||||
href: "#hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Our Story",
|
label: "Our Story", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Menu",
|
label: "Menu", href: "/menu"},
|
||||||
href: "#dishes",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Gallery",
|
label: "Gallery", href: "#gallery"},
|
||||||
href: "#gallery",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Connect",
|
title: "Connect", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Contact Us",
|
label: "Contact Us", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Order Online",
|
label: "Order Online", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Reservations",
|
label: "Reservations", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Facebook",
|
label: "Facebook", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms of Service",
|
label: "Terms of Service", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Accessibility",
|
label: "Accessibility", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "FAQ",
|
label: "FAQ", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user