Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f37d04c0a1 |
250
src/app/page.tsx
250
src/app/page.tsx
@@ -31,21 +31,13 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "menu"},
|
||||||
id: "menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "testimonials"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Location",
|
name: "Location", id: "location"},
|
||||||
id: "location",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Tasty Munch"
|
brandName="Tasty Munch"
|
||||||
/>
|
/>
|
||||||
@@ -54,67 +46,42 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboard
|
<HeroBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Luxury Street Food You’ll Crave Again."
|
title="Luxury Street Food You’ll Crave Again."
|
||||||
description="Fresh shawarma, loaded meals & premium taste — right in Malete."
|
description="Fresh shawarma, loaded meals & premium taste — right in Malete."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Order Now (WhatsApp)",
|
text: "Order Now (WhatsApp)", href: "https://wa.me/2348158204093"},
|
||||||
href: "https://wa.me/2348158204093",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Get Directions",
|
text: "Get Directions", href: "https://maps.google.com"},
|
||||||
href: "https://maps.google.com",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-delicious-burger-composition_23-2148868224.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/high-angle-delicious-burger-composition_23-2148868224.jpg"
|
||||||
imageAlt="Luxury shawarma experience"
|
imageAlt="Luxury shawarma experience"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/people-enjoying-delicious-street-food_23-2151543785.jpg",
|
src: "http://img.b2bpic.net/free-photo/people-enjoying-delicious-street-food_23-2151543785.jpg", alt: "Happy customer 1"},
|
||||||
alt: "Happy customer 1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/young-people-enjoying-street-food_23-2151525839.jpg",
|
src: "http://img.b2bpic.net/free-photo/young-people-enjoying-street-food_23-2151525839.jpg", alt: "Happy customer 2"},
|
||||||
alt: "Happy customer 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/young-people-enjoying-street-food_23-2151525664.jpg",
|
src: "http://img.b2bpic.net/free-photo/young-people-enjoying-street-food_23-2151525664.jpg", alt: "Happy customer 3"},
|
||||||
alt: "Happy customer 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/young-people-enjoying-street-food_23-2151525825.jpg",
|
src: "http://img.b2bpic.net/free-photo/young-people-enjoying-street-food_23-2151525825.jpg", alt: "Happy customer 4"},
|
||||||
alt: "Happy customer 4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/front-view-smiley-man-eating-outdoors_23-2150168142.jpg",
|
src: "http://img.b2bpic.net/free-photo/front-view-smiley-man-eating-outdoors_23-2150168142.jpg", alt: "Happy customer 5"},
|
||||||
alt: "Happy customer 5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by 500+ satisfied foodies in Malete"
|
avatarText="Trusted by 500+ satisfied foodies in Malete"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "100% FRESH INGREDIENTS"},
|
||||||
text: "100% FRESH INGREDIENTS",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "PREMIUM SHAWARMA"},
|
||||||
text: "PREMIUM SHAWARMA",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "FAST DELIVERY"},
|
||||||
text: "FAST DELIVERY",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "AUTHENTIC SPICES"},
|
||||||
text: "AUTHENTIC SPICES",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "MALETE'S FINEST"},
|
||||||
text: "MALETE'S FINEST",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -127,47 +94,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Classic Shawarma", price: "₦2,500", imageSrc: "http://img.b2bpic.net/free-photo/arabic-kebab-sandwich-ketchup-sauce_23-2148651077.jpg", imageAlt: "Classic Shawarma"},
|
||||||
name: "Classic Shawarma",
|
|
||||||
price: "₦2,500",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/arabic-kebab-sandwich-ketchup-sauce_23-2148651077.jpg",
|
|
||||||
imageAlt: "Classic Shawarma",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "Loaded Fries", price: "₦1,800", imageSrc: "http://img.b2bpic.net/free-photo/pastry-mix-with-glass-tea_114579-16034.jpg", imageAlt: "Loaded Fries"},
|
||||||
name: "Loaded Fries",
|
|
||||||
price: "₦1,800",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/pastry-mix-with-glass-tea_114579-16034.jpg",
|
|
||||||
imageAlt: "Loaded Fries",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Chicken Specials", price: "₦3,200", imageSrc: "http://img.b2bpic.net/free-photo/top-view-assortment-delicious-christmas-dishes_23-2148719878.jpg", imageAlt: "Chicken Specials"},
|
||||||
name: "Chicken Specials",
|
|
||||||
price: "₦3,200",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-assortment-delicious-christmas-dishes_23-2148719878.jpg",
|
|
||||||
imageAlt: "Chicken Specials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "Jamblack Special Shawarma", price: "₦3,500", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meat-sandwich-made-meat-grilled-spit-with-seasonings-notepad-blue-desk-sandwich-burger-meat-meal-lunch-food_140725-64502.jpg", imageAlt: "Special Shawarma"},
|
||||||
name: "Jamblack Special Shawarma",
|
|
||||||
price: "₦3,500",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meat-sandwich-made-meat-grilled-spit-with-seasonings-notepad-blue-desk-sandwich-burger-meat-meal-lunch-food_140725-64502.jpg",
|
|
||||||
imageAlt: "Special Shawarma",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "Spicy Loaded Fries", price: "₦2,000", imageSrc: "http://img.b2bpic.net/free-photo/fried-chips_23-2147695722.jpg", imageAlt: "Spicy Loaded Fries"},
|
||||||
name: "Spicy Loaded Fries",
|
|
||||||
price: "₦2,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-chips_23-2147695722.jpg",
|
|
||||||
imageAlt: "Spicy Loaded Fries",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Combo Platter", price: "₦5,000", imageSrc: "http://img.b2bpic.net/free-photo/tasty-bruschetta-assortment-top-view_23-2148516995.jpg", imageAlt: "Combo Platter"},
|
||||||
name: "Combo Platter",
|
|
||||||
price: "₦5,000",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-bruschetta-assortment-top-view_23-2148516995.jpg",
|
|
||||||
imageAlt: "Combo Platter",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Featured Menu"
|
title="Featured Menu"
|
||||||
description="Premium ingredients, unforgettable flavors."
|
description="Premium ingredients, unforgettable flavors."
|
||||||
@@ -180,45 +117,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Top Notch!", quote: "Best shawarma in Malete no cap 🔥", name: "Tunde Adewale", role: "Student", imageSrc: "http://img.b2bpic.net/free-photo/young-people-enjoying-street-food_23-2151525710.jpg"},
|
||||||
title: "Top Notch!",
|
|
||||||
quote: "Best shawarma in Malete no cap 🔥",
|
|
||||||
name: "Tunde Adewale",
|
|
||||||
role: "Student",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-people-enjoying-street-food_23-2151525710.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Always Fresh", quote: "Quality is top notch, always fresh.", name: "Sarah Jenkins", role: "Professional", imageSrc: "http://img.b2bpic.net/free-photo/closeup-woman-taking-picture-her-boyfriend-who-is-eating-donut-cafe_637285-9067.jpg"},
|
||||||
title: "Always Fresh",
|
|
||||||
quote: "Quality is top notch, always fresh.",
|
|
||||||
name: "Sarah Jenkins",
|
|
||||||
role: "Professional",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-woman-taking-picture-her-boyfriend-who-is-eating-donut-cafe_637285-9067.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Great Taste", quote: "The chicken specials are unreal, love the spices.", name: "Michael Okafor", role: "Resident", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg"},
|
||||||
title: "Great Taste",
|
|
||||||
quote: "The chicken specials are unreal, love the spices.",
|
|
||||||
name: "Michael Okafor",
|
|
||||||
role: "Resident",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "Reliable", quote: "My go-to place after 6 PM, hits the spot every time.", name: "Fatima Bello", role: "Student", imageSrc: "http://img.b2bpic.net/free-photo/stylish-friends-sitting-cafe_273609-5476.jpg"},
|
||||||
title: "Reliable",
|
|
||||||
quote: "My go-to place after 6 PM, hits the spot every time.",
|
|
||||||
name: "Fatima Bello",
|
|
||||||
role: "Student",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-friends-sitting-cafe_273609-5476.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "Luxury Experience", quote: "Finally a luxury street food vibe that actually tastes premium.", name: "Chidi Eze", role: "Local", imageSrc: "http://img.b2bpic.net/free-photo/handsome-smiling-man-eat-salade-restaurant-waiting-woman-with-bouquet-roses_496169-302.jpg"},
|
||||||
title: "Luxury Experience",
|
|
||||||
quote: "Finally a luxury street food vibe that actually tastes premium.",
|
|
||||||
name: "Chidi Eze",
|
|
||||||
role: "Local",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-smiling-man-eat-salade-restaurant-waiting-woman-with-bouquet-roses_496169-302.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="What Our Customers Say"
|
title="What Our Customers Say"
|
||||||
description="Authentic taste from the streets of Malete."
|
description="Authentic taste from the streets of Malete."
|
||||||
@@ -230,18 +137,12 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Find Us"
|
title="Find Us"
|
||||||
description={[
|
description={[
|
||||||
"📍 Shop 7, Kwasu School Junction, Malete, Ilorin.",
|
"📍 Shop 7, Kwasu School Junction, Malete, Ilorin.", "Open daily from 10 AM. Peak hours are around 6 PM."]}
|
||||||
"Open daily from 10 AM. Peak hours are around 6 PM.",
|
|
||||||
]}
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now",
|
text: "Call Now", href: "tel:08158204093"},
|
||||||
href: "tel:08158204093",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Open in Maps",
|
text: "Open in Maps", href: "https://maps.google.com"},
|
||||||
href: "https://maps.google.com",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -253,53 +154,29 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "g1",
|
id: "g1", title: "Fresh Prep", descriptions: [
|
||||||
title: "Fresh Prep",
|
"Crafted daily with love."],
|
||||||
descriptions: [
|
imageSrc: "http://img.b2bpic.net/free-photo/top-view-various-spices-pepper-grinder-tomatoes-garlic-greens-pomegranate-table_179666-46794.jpg"},
|
||||||
"Crafted daily with love.",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-various-spices-pepper-grinder-tomatoes-garlic-greens-pomegranate-table_179666-46794.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "g2",
|
id: "g2", title: "Premium Ingredients", descriptions: [
|
||||||
title: "Premium Ingredients",
|
"Locally sourced, high quality."],
|
||||||
descriptions: [
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-raw-vegetables-wooden-surface_23-2147956539.jpg"},
|
||||||
"Locally sourced, high quality.",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-raw-vegetables-wooden-surface_23-2147956539.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "g3",
|
id: "g3", title: "Artistic Plating", descriptions: [
|
||||||
title: "Artistic Plating",
|
"Food that looks as good as it tastes."],
|
||||||
descriptions: [
|
imageSrc: "http://img.b2bpic.net/free-photo/safari-party-with-snacks-high-angle_23-2149707864.jpg"},
|
||||||
"Food that looks as good as it tastes.",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/safari-party-with-snacks-high-angle_23-2149707864.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "g4",
|
id: "g4", title: "Kitchen Mastery", descriptions: [
|
||||||
title: "Kitchen Mastery",
|
"Expertly prepared meals."],
|
||||||
descriptions: [
|
imageSrc: "http://img.b2bpic.net/free-photo/delicious-smoke-cooked-food_23-2151259749.jpg"},
|
||||||
"Expertly prepared meals.",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-smoke-cooked-food_23-2151259749.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "g5",
|
id: "g5", title: "Street Luxury", descriptions: [
|
||||||
title: "Street Luxury",
|
"The vibe you deserve."],
|
||||||
descriptions: [
|
imageSrc: "http://img.b2bpic.net/free-photo/delicious-cake-glass-arrangement_23-2149030737.jpg"},
|
||||||
"The vibe you deserve.",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-cake-glass-arrangement_23-2149030737.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "g6",
|
id: "g6", title: "Loaded Meals", descriptions: [
|
||||||
title: "Loaded Meals",
|
"Satisfyingly big portions."],
|
||||||
descriptions: [
|
imageSrc: "http://img.b2bpic.net/free-photo/salad-with-mozarella-tomato-slices-with-basilic-herbal-dressing_114579-3682.jpg"},
|
||||||
"Satisfyingly big portions.",
|
|
||||||
],
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/salad-with-mozarella-tomato-slices-with-basilic-herbal-dressing_114579-3682.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Tasty Lifestyle"
|
title="Tasty Lifestyle"
|
||||||
description="A peek into our premium process and vibe."
|
description="A peek into our premium process and vibe."
|
||||||
@@ -312,20 +189,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "Do you deliver?", content: "Yes, we offer local delivery across Malete."},
|
||||||
title: "Do you deliver?",
|
|
||||||
content: "Yes, we offer local delivery across Malete.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "What are your peak hours?", content: "We are busiest around 6 PM, but our doors open from 10 AM daily."},
|
||||||
title: "What are your peak hours?",
|
|
||||||
content: "We are busiest around 6 PM, but our doors open from 10 AM daily.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "Can I pre-order?", content: "Absolutely, message us on WhatsApp with your request."},
|
||||||
title: "Can I pre-order?",
|
|
||||||
content: "Absolutely, message us on WhatsApp with your request.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-cook-preparing-meal-designing-meal-inside-plate-fry-meat-food-meal_140725-26012.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/front-view-cook-preparing-meal-designing-meal-inside-plate-fry-meat-food-meal_140725-26012.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -339,13 +207,13 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
tag="Order Now"
|
tag="Order Now"
|
||||||
title="Hungry? Let’s Fix That."
|
title="Hungry? Let’s Fix That."
|
||||||
description="Reach out to us directly on WhatsApp to place your order or call us."
|
description="Reach out to us directly on WhatsApp to place your order or call us."
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-friends-having-lunch-luxury-restaurant_23-2151081456.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/top-view-friends-having-lunch-luxury-restaurant_23-2151081456.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
|
inputPlaceholder="Enter your name or message"
|
||||||
buttonText="Chat on WhatsApp"
|
buttonText="Chat on WhatsApp"
|
||||||
onSubmit={(email) => window.open('https://wa.me/2348158204093', '_blank')}
|
onSubmit={(email) => window.open('https://wa.me/2348158204093', '_blank')}
|
||||||
/>
|
/>
|
||||||
@@ -355,16 +223,12 @@ export default function LandingPage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="Tasty Munch by Jamblack"
|
logoText="Tasty Munch by Jamblack"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Privacy Policy",
|
text: "Privacy Policy", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Contact Us",
|
text: "Contact Us", href: "tel:08158204093"}}
|
||||||
href: "tel:08158204093",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user