Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| afdcdfe228 | |||
| d1f3bb1f00 |
200
src/app/page.tsx
200
src/app/page.tsx
@@ -30,22 +30,10 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "hero" },
|
||||||
name: "Home",
|
{ name: "Our Food", id: "menu" },
|
||||||
id: "hero",
|
{ name: "Entertainment", id: "entertainment" },
|
||||||
},
|
{ name: "Contact", id: "contact" },
|
||||||
{
|
|
||||||
name: "Our Food",
|
|
||||||
id: "menu",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Entertainment",
|
|
||||||
id: "entertainment",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Emmy's Eatery"
|
brandName="Emmy's Eatery"
|
||||||
/>
|
/>
|
||||||
@@ -53,52 +41,20 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardRotatedCarousel
|
<HeroBillboardRotatedCarousel
|
||||||
background={{
|
background={{ variant: "gradient-bars" }}
|
||||||
variant: "gradient-bars",
|
|
||||||
}}
|
|
||||||
title="Taste the Vibe at Emmy's Eatery"
|
title="Taste the Vibe at Emmy's Eatery"
|
||||||
description="Experience the best of Ghanaian flavors, live entertainment, and warm hospitality in the heart of Adenta, Accra."
|
description="Experience the best of Ghanaian flavors, live entertainment, and warm hospitality in the heart of Adenta, Accra."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Order on Bolt", href: "https://food.bolt.eu/" },
|
||||||
text: "Order on Bolt",
|
{ text: "Visit Us", href: "#contact" },
|
||||||
href: "https://food.bolt.eu/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: "Visit Us",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
carouselItems={[
|
carouselItems={[
|
||||||
{
|
{ id: "s1", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-dinner-arrangement-night_23-2149190923.jpg?_wi=1", imageAlt: "Dining arrangement" },
|
||||||
id: "slide-1",
|
{ id: "s2", imageSrc: "http://img.b2bpic.net/free-photo/stylish-smiling-woman-colorful-outfit-retro-vintage-50-s-cafe-dancing-wearing-jacket-blue-skirt-red-shirt-sunglasses-having-fun-cheerful-mood_285396-10388.jpg?_wi=1", imageAlt: "Live band performance" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-dinner-arrangement-night_23-2149190923.jpg?_wi=1",
|
{ id: "s3", imageSrc: "http://img.b2bpic.net/free-photo/beef-dish-restaurant_7939-1754.jpg?_wi=1", imageAlt: "Banku and Tilapia" },
|
||||||
imageAlt: "vibrant ghanaian restaurant interior",
|
{ id: "s4", imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-chiken-rice_23-2148294950.jpg?_wi=1", imageAlt: "Jollof rice" },
|
||||||
},
|
{ id: "s5", imageSrc: "http://img.b2bpic.net/free-photo/meal-horizontal-fillet-fresh-red_1203-5238.jpg?_wi=1", imageAlt: "Yam chips" },
|
||||||
{
|
{ id: "s6", imageSrc: "http://img.b2bpic.net/free-photo/three-firends-together-eating-pizza-cafe_1303-26155.jpg?_wi=1", imageAlt: "Guests dining" },
|
||||||
id: "slide-2",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-chiken-rice_23-2148294950.jpg?_wi=1",
|
|
||||||
imageAlt: "jollof rice with chicken plate",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "slide-3",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-dish-restaurant_7939-1754.jpg?_wi=1",
|
|
||||||
imageAlt: "banku and tilapia ghanaian dish",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "slide-4",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/meal-horizontal-fillet-fresh-red_1203-5238.jpg?_wi=1",
|
|
||||||
imageAlt: "yam chips and fish plate",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "slide-5",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-smiling-woman-colorful-outfit-retro-vintage-50-s-cafe-dancing-wearing-jacket-blue-skirt-red-shirt-sunglasses-having-fun-cheerful-mood_285396-10388.jpg?_wi=1",
|
|
||||||
imageAlt: "restaurant live band performance",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "slide-6",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-chiken-rice_23-2148294950.jpg?_wi=2",
|
|
||||||
imageAlt: "jollof rice with chicken plate",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -108,9 +64,7 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
title="A Unique Dining Experience"
|
title="A Unique Dining Experience"
|
||||||
description={[
|
description={[
|
||||||
"Emmy’s Eatery blends local Ghanaian flavors with a lively entertainment atmosphere. Located in Adenta, we serve hearty comfort meals and provide a space where friends and family can connect over great food and music.",
|
"Emmy’s Eatery blends local Ghanaian flavors with a lively entertainment atmosphere. Located in Adenta, we serve hearty comfort meals and provide a space where friends and family can connect over great food and music.", "We believe in authentic taste, affordable pricing, and generous portions, making every visit a memorable one."]}
|
||||||
"We believe in authentic taste, affordable pricing, and generous portions, making every visit a memorable one.",
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -121,27 +75,9 @@ export default function LandingPage() {
|
|||||||
gridVariant="asymmetric-60-wide-40-narrow"
|
gridVariant="asymmetric-60-wide-40-narrow"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{ id: "p1", name: "Jollof Rice Special", price: "GHS 45", variant: "w/ Chicken, Egg & Salad", imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-chiken-rice_23-2148294950.jpg?_wi=3" },
|
||||||
id: "p1",
|
{ id: "p2", name: "Banku & Tilapia", price: "GHS 60", variant: "Authentic Style", imageSrc: "http://img.b2bpic.net/free-photo/beef-dish-restaurant_7939-1754.jpg?_wi=2" },
|
||||||
name: "Jollof Rice Special",
|
{ id: "p3", name: "Yam Chips & Fish", price: "GHS 35", variant: "Freshly Fried", imageSrc: "http://img.b2bpic.net/free-photo/meal-horizontal-fillet-fresh-red_1203-5238.jpg?_wi=2" },
|
||||||
price: "GHS 45",
|
|
||||||
variant: "w/ Chicken, Egg & Salad",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-chiken-rice_23-2148294950.jpg?_wi=3",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p2",
|
|
||||||
name: "Banku & Tilapia",
|
|
||||||
price: "GHS 60",
|
|
||||||
variant: "Authentic Style",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-dish-restaurant_7939-1754.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p3",
|
|
||||||
name: "Yam Chips & Fish",
|
|
||||||
price: "GHS 35",
|
|
||||||
variant: "Freshly Fried",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/meal-horizontal-fillet-fresh-red_1203-5238.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Popular Dishes"
|
title="Our Popular Dishes"
|
||||||
description="Experience the authentic taste of tradition in every bite."
|
description="Experience the authentic taste of tradition in every bite."
|
||||||
@@ -155,27 +91,12 @@ export default function LandingPage() {
|
|||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{ title: "Live Band Sessions", description: "Weekly music performances.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-smiling-woman-colorful-outfit-retro-vintage-50-s-cafe-dancing-wearing-jacket-blue-skirt-red-shirt-sunglasses-having-fun-cheerful-mood_285396-10388.jpg?_wi=2" },
|
||||||
title: "Live Band Sessions",
|
{ title: "Weekend Hangouts", description: "Perfect for relaxation.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-dinner-arrangement-night_23-2149190923.jpg?_wi=2" },
|
||||||
description: "Weekly music performances creating a relaxing and joyful environment.",
|
{ title: "Family Friendly", description: "Welcoming for all ages.", imageSrc: "http://img.b2bpic.net/free-photo/beef-dish-restaurant_7939-1754.jpg?_wi=3" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-smiling-woman-colorful-outfit-retro-vintage-50-s-cafe-dancing-wearing-jacket-blue-skirt-red-shirt-sunglasses-having-fun-cheerful-mood_285396-10388.jpg?_wi=2",
|
|
||||||
imageAlt: "Live Band",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Weekend Hangouts",
|
|
||||||
description: "The perfect destination to relax and unwind with friends.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-dinner-arrangement-night_23-2149190923.jpg?_wi=2",
|
|
||||||
imageAlt: "People gathering",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Family Friendly",
|
|
||||||
description: "A welcoming space perfect for all generations to dine together.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-dish-restaurant_7939-1754.jpg?_wi=3",
|
|
||||||
imageAlt: "Family dining",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="More Than Just Food"
|
title="More Than Just Food"
|
||||||
description="Enjoy the rhythm and energy of Emmy's Eatery with live entertainment and weekend vibes."
|
description="Enjoy the rhythm and energy of Emmy's Eatery."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -184,49 +105,12 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", title: "Fantastic", quote: "The Jollof is truly authentic!", name: "Sarah", role: "Foodie", imageSrc: "http://img.b2bpic.net/free-photo/waitress-serving-cup-coffee-customer_1170-656.jpg" },
|
||||||
id: "1",
|
{ id: "2", title: "Great Vibes", quote: "Perfect for date night.", name: "Michael", role: "Regular", imageSrc: "http://img.b2bpic.net/free-photo/three-firends-together-eating-pizza-cafe_1303-26155.jpg" },
|
||||||
title: "Fantastic Experience",
|
{ id: "3", title: "Generous", quote: "Always fresh and flavorful.", name: "Adjoa", role: "Customer", imageSrc: "http://img.b2bpic.net/free-photo/woman-man-coffee-shop_23-2148263266.jpg?_wi=1" },
|
||||||
quote: "The Jollof is truly authentic! The live band made our Friday night special.",
|
|
||||||
name: "Sarah",
|
|
||||||
role: "Foodie",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/waitress-serving-cup-coffee-customer_1170-656.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
title: "Great Vibes",
|
|
||||||
quote: "Perfect spot in Adenta for a casual date night. Good prices and great service.",
|
|
||||||
name: "Michael",
|
|
||||||
role: "Regular",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/three-firends-together-eating-pizza-cafe_1303-26155.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
title: "Generous Portions",
|
|
||||||
quote: "I love the Banku and Tilapia. Always fresh and packed with flavor.",
|
|
||||||
name: "Adjoa",
|
|
||||||
role: "Customer",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-man-coffee-shop_23-2148263266.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
title: "Family Favorite",
|
|
||||||
quote: "Kids loved the yam chips! Definitely coming back for more.",
|
|
||||||
name: "David",
|
|
||||||
role: "Father",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-pretty-woman-drinking-tasty-sweet-cocktail-city-terrace-casual-trendy-outfit-weekend-travel-mood_291049-1725.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
title: "Absolute Gem",
|
|
||||||
quote: "The atmosphere is unmatched in Adenta. Feels just like home.",
|
|
||||||
name: "Ama",
|
|
||||||
role: "Regular Guest",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-man-coffee-shop_23-2148263266.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Hear From Our Guests"
|
title="Hear From Our Guests"
|
||||||
description="See why our local community loves dining at Emmy's."
|
description="See why our community loves dining here."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -235,28 +119,12 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{ id: "q1", title: "Delivery?", content: "Yes, on Bolt Food." },
|
||||||
id: "q1",
|
{ id: "q2", title: "Hours?", content: "Daily, open till late." },
|
||||||
title: "Do you offer delivery?",
|
|
||||||
content: "Yes, we are on Bolt Food for convenient delivery to your doorstep.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "q2",
|
|
||||||
title: "What are your hours?",
|
|
||||||
content: "We are open daily from morning until late at night.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "q3",
|
|
||||||
title: "Is there parking available?",
|
|
||||||
content: "Yes, there is space for customers near the premises.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
ctaTitle="Visit or Order Today"
|
ctaTitle="Visit or Order Today"
|
||||||
ctaDescription="Located in Adenta Municipality, Accra. Open daily till late. Call us at 059 743 1312."
|
ctaDescription="Located in Adenta, Accra. Call us at 059 743 1312."
|
||||||
ctaButton={{
|
ctaButton={{ text: "Call Now", href: "tel:0597431312" }}
|
||||||
text: "Call Now",
|
|
||||||
href: "tel:0597431312",
|
|
||||||
}}
|
|
||||||
ctaIcon={Phone}
|
ctaIcon={Phone}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -264,14 +132,8 @@ export default function LandingPage() {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="Emmy's Eatery"
|
logoText="Emmy's Eatery"
|
||||||
leftLink={{
|
leftLink={{ text: "Adenta, Accra", href: "#" }}
|
||||||
text: "Adenta, Accra",
|
rightLink={{ text: "© 2024 Emmy's Eatery", href: "#" }}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
rightLink={{
|
|
||||||
text: "© 2024 Emmy's Eatery",
|
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user