Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e6eeba357e | |||
| 1f0ae31393 | |||
| 5b92c3df3c | |||
| fcf34b525f | |||
| 2dff858c0f | |||
| c9871239a9 | |||
| 4b21038f8e |
121
src/app/menu/page.tsx
Normal file
121
src/app/menu/page.tsx
Normal file
@@ -0,0 +1,121 @@
|
||||
"use client"
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { MapPin } from 'lucide-react';
|
||||
import Link from 'next/link';
|
||||
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="noise"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Raykdi"
|
||||
navItems={[
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Story", id: "about-story" },
|
||||
{ name: "Experience", id: "experience-features" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Visit", id: "contact-faq" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="signature-dishes" data-section="signature-dishes">
|
||||
<ProductCardOne
|
||||
title="Our Full Menu"
|
||||
description="Explore our complete selection of authentic South Asian street food. Every dish is freshly prepared daily with the finest ingredients."
|
||||
tag="Menu"
|
||||
products={[
|
||||
{ id: "delhi-chaat", name: "Delhi Chaat", price: "£5.50", imageSrc: "http://img.b2bpic.net/free-photo/delicious-soup-made-with-peanuts_23-2150361183.jpg?_wi=1", imageAlt: "Delhi Chaat" },
|
||||
{ id: "mumbai-bhel", name: "Mumbai Bhel", price: "£4.50", imageSrc: "http://img.b2bpic.net/free-photo/top-view-dish-with-seeds-pomegranate-christmas-dish-with-seeds-pomegranate-bowls-colorful-spices-tree-branches-table_140725-111661.jpg?_wi=1", imageAlt: "Mumbai Bhel" },
|
||||
{ id: "pani-puri", name: "Pani Puri", price: "£5.00", imageSrc: "http://img.b2bpic.net/free-photo/greens-spicy-pasta-bowl-marble-background_114579-63713.jpg?_wi=1", imageAlt: "Pani Puri" },
|
||||
{ id: "kachori-chaat", name: "Kachori Chaat", price: "£6.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-sugar-cookies-with-orange-slices-cips-dark-grey-surface-cookies-biscuit-sweet-tea-cake_140725-118522.jpg?_wi=1", imageAlt: "Kachori Chaat" },
|
||||
{ id: "chana-chor", name: "Chana Chor Garam", price: "£4.00", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tasty-jewish-food-frame_23-2148814452.jpg?_wi=1", imageAlt: "Chana Chor Garam" },
|
||||
{ id: "samosa-chaat", name: "Samosa Chaat", price: "£5.50", imageSrc: "http://img.b2bpic.net/free-photo/delicious-soup-made-with-peanuts_23-2150361183.jpg?_wi=2", imageAlt: "Samosa Chaat" },
|
||||
{ id: "aloo-tikki", name: "Aloo Tikki", price: "£4.50", imageSrc: "http://img.b2bpic.net/free-photo/top-view-dish-with-seeds-pomegranate-christmas-dish-with-seeds-pomegranate-bowls-colorful-spices-tree-branches-table_140725-111661.jpg?_wi=2", imageAlt: "Aloo Tikki" },
|
||||
{ id: "dahi-bhalle", name: "Dahi Bhalle", price: "£3.50", imageSrc: "http://img.b2bpic.net/free-photo/greens-spicy-pasta-bowl-marble-background_114579-63713.jpg?_wi=2", imageAlt: "Dahi Bhalle" },
|
||||
{ id: "masala-chai", name: "Masala Chai", price: "£2.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-sugar-cookies-with-orange-slices-cips-dark-grey-surface-cookies-biscuit-sweet-tea-cake_140725-118522.jpg?_wi=2", imageAlt: "Masala Chai" },
|
||||
{ id: "lassi", name: "Mango Lassi", price: "£3.00", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tasty-jewish-food-frame_23-2148814452.jpg?_wi=2", imageAlt: "Mango Lassi" },
|
||||
{ id: "jal-jeera", name: "Jal Jeera", price: "£2.50", imageSrc: "http://img.b2bpic.net/free-photo/delicious-soup-made-with-peanuts_23-2150361183.jpg?_wi=3", imageAlt: "Jal Jeera" },
|
||||
{ id: "papadum", name: "Crispy Papadum", price: "£1.50", imageSrc: "http://img.b2bpic.net/free-photo/top-view-dish-with-seeds-pomegranate-christmas-dish-with-seeds-pomegranate-bowls-colorful-spices-tree-branches-table_140725-111661.jpg?_wi=3", imageAlt: "Papadum" }
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-faq" data-section="contact-faq">
|
||||
<ContactFaq
|
||||
faqs={[
|
||||
{ id: "1", title: "Where is Raykdi located?", content: "We're located in the heart of Leicester, near the shopping centres. Easy to find, easy to park, easy to love. Visit us for the best chaat experience in town." },
|
||||
{ id: "2", title: "What are your opening hours?", content: "We're open daily from 11am to 9pm, ready to serve you authentic street food whenever cravings strike. Closed on Mondays for rest and preparation." },
|
||||
{ id: "3", title: "Do you offer delivery?", content: "Currently we operate on-site only to ensure your food is prepared fresh. We recommend visiting us to experience the full Raykdi magic." },
|
||||
{ id: "4", title: "Can I book for groups?", content: "Yes! We love hosting group gatherings. Contact us directly at hello@raykdi.co.uk for group reservations and special arrangements." },
|
||||
{ id: "5", title: "Are there vegetarian options?", content: "Absolutely! Most of our menu is naturally vegetarian. All chaat, bhel, and snacks are available in both regular and vegan options." },
|
||||
{ id: "6", title: "What's your specialty?", content: "Our signature pani puri and chaat are legendary. Come try them and you'll understand why locals keep coming back." }
|
||||
]}
|
||||
ctaTitle="Visit Raykdi Today"
|
||||
ctaDescription="Find us near Leicester's shopping centres for the freshest chaat in town. Open daily with warm hospitality."
|
||||
ctaButton={{ text: "Get Directions", href: "https://maps.google.com" }}
|
||||
ctaIcon={MapPin}
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Raykdi"
|
||||
columns={[
|
||||
{
|
||||
title: "Menu", items: [
|
||||
{ label: "Chaat Favourites", href: "/menu" },
|
||||
{ label: "Street Snacks", href: "/menu" },
|
||||
{ label: "Drinks", href: "/menu" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "Our Story", href: "about-story" },
|
||||
{ label: "Experience", href: "experience-features" },
|
||||
{ label: "Reviews", href: "testimonials" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Visit Us", href: "contact-faq" },
|
||||
{ label: "Get Directions", href: "https://maps.google.com" },
|
||||
{ label: "Instagram", href: "https://instagram.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Contact", href: "mailto:hello@raykdi.co.uk" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Raykdi | Premium Street Food Experience"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -30,7 +30,7 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
brandName="Raykdi"
|
||||
navItems={[
|
||||
{ name: "Menu", id: "signature-dishes" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Story", id: "about-story" },
|
||||
{ name: "Experience", id: "experience-features" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
@@ -44,7 +44,7 @@ export default function LandingPage() {
|
||||
logoText="RAYKDI"
|
||||
description="Where Street Food Becomes an Experience. Freshly prepared chaat bursting with flavour, nostalgia and spice."
|
||||
buttons={[
|
||||
{ text: "View Menu", href: "#signature-dishes" },
|
||||
{ text: "View Menu", href: "/menu" },
|
||||
{ text: "Visit Us Today", href: "#contact-faq" }
|
||||
]}
|
||||
slides={[
|
||||
@@ -89,7 +89,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Explore Full Menu", href: "#contact-faq" }
|
||||
{ text: "Explore Full Menu", href: "/menu" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -184,9 +184,9 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Menu", items: [
|
||||
{ label: "Chaat Favourites", href: "#signature-dishes" },
|
||||
{ label: "Street Snacks", href: "#signature-dishes" },
|
||||
{ label: "Drinks", href: "#signature-dishes" }
|
||||
{ label: "Chaat Favourites", href: "/menu" },
|
||||
{ label: "Street Snacks", href: "/menu" },
|
||||
{ label: "Drinks", href: "/menu" }
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user