Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #6.
This commit is contained in:
@@ -3,16 +3,20 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial";
|
||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
|
||||
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
||||
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
|
||||
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import Link from "next/link";
|
||||
import { Star, Heart, Utensils, HelpCircle, Instagram, Facebook, MapPin } from "lucide-react";
|
||||
import { Star, Instagram, Facebook, MapPin } from "lucide-react";
|
||||
|
||||
export default function AdminPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reservations", id: "/reservations" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -26,315 +30,67 @@ export default function AdminPage() {
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
{/* Navbar */}
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reservations", id: "reservations" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
navItems={navItems}
|
||||
brandName="Little Village"
|
||||
bottomLeftText="Authentic Andhra Cuisine"
|
||||
bottomRightText="090100 38444"
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Hero Section */}
|
||||
<div id="hero" data-section="hero" className="relative w-full overflow-hidden">
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
title="Traditional Provisions, Modern Experience"
|
||||
description="Welcome to Little Village Restaurant. We serve authentic Andhra cuisine in a spacious, unpretentious setting perfect for families and food lovers. Experience our traditional recipes, warm hospitality, and online ordering."
|
||||
background={{ variant: "glowing-orb" }}
|
||||
title="Administrative Dashboard"
|
||||
description="Welcome to the Little Village Restaurant administrative panel. Manage reservations, view statistics, and oversee restaurant operations with ease."
|
||||
tag="4.1★ Highly Rated"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cook-is-fry-vegetables-with-spices-sauce-wok-cooking-process-asian-restaurant_613910-4977.jpg?_wi=3"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cook-is-fry-vegetables-with-spices-sauce-wok-cooking-process-asian-restaurant_613910-4977.jpg"
|
||||
imageAlt="Little Village Restaurant interior"
|
||||
mediaAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
name: "Rajesh Kumar",
|
||||
handle: "Regular Customer",
|
||||
testimonial:
|
||||
"Best authentic Andhra biryani in the city. The ambiance is so welcoming for families!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-giving-thumbs-up-gray-wall_114579-63355.jpg?_wi=5",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
name: "Rajesh Kumar", handle: "Regular Customer", testimonial: "Best authentic Andhra biryani in the city. The ambiance is so welcoming for families!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-giving-thumbs-up-gray-wall_114579-63355.jpg", imageAlt: "Rajesh Kumar"
|
||||
},
|
||||
{
|
||||
name: "Priya Sharma",
|
||||
handle: "Food Blogger",
|
||||
testimonial:
|
||||
"Every dish is prepared with such care and traditional flavors. Highly recommend!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-shaking-hands_23-2148395404.jpg?_wi=5",
|
||||
imageAlt: "Priya Sharma",
|
||||
name: "Priya Sharma", handle: "Food Blogger", testimonial: "Every dish is prepared with such care and traditional flavors. Highly recommend!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-shaking-hands_23-2148395404.jpg", imageAlt: "Priya Sharma"
|
||||
},
|
||||
{
|
||||
name: "Anil Patel",
|
||||
handle: "Business Owner",
|
||||
testimonial:
|
||||
"Perfect venue for corporate dinners and celebrations. Great food and service!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg?_wi=5",
|
||||
imageAlt: "Anil Patel",
|
||||
},
|
||||
name: "Anil Patel", handle: "Business Owner", testimonial: "Perfect venue for corporate dinners and celebrations. Great food and service!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg", imageAlt: "Anil Patel"
|
||||
}
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "View Menu", href: "/menu" },
|
||||
{ text: "Order Now", href: "#order" },
|
||||
{ text: "View Reservations", href: "/reservations" },
|
||||
{ text: "Back to Home", href: "/" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Featured Dishes */}
|
||||
<div id="featured-dishes" data-section="featured-dishes">
|
||||
<ProductCardOne
|
||||
title="Featured Dishes"
|
||||
description="Our most loved specialties, carefully crafted with traditional Andhra recipes and premium ingredients."
|
||||
tag="Popular Choices"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="fade"
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Andhra Kodi Kura",
|
||||
price: "₹330",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lime-spices-near-tasty-rice-dish_23-2147894783.jpg?_wi=4",
|
||||
imageAlt: "Andhra Kodi Kura - Traditional chicken curry",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Tandoori Chicken",
|
||||
price: "₹550",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mixed-grilled-meat-with-eggplant-rolls_140725-3463.jpg?_wi=4",
|
||||
imageAlt: "Tandoori Chicken - Grilled specialty",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Paneer Tikka Masala",
|
||||
price: "₹300",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-food-from-around-world_23-2151596621.jpg?_wi=4",
|
||||
imageAlt: "Paneer Tikka Masala - Creamy curry",
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "View Full Menu", href: "/menu" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Services Section */}
|
||||
<div id="services" data-section="services" className="bg-gradient-to-b from-transparent to-accent/5">
|
||||
<FeatureCardTwelve
|
||||
title="Our Services"
|
||||
description="Discover the variety of dining and ordering options we offer to serve you better."
|
||||
tag="Ways to Enjoy"
|
||||
tagIcon={Utensils}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "dine-in",
|
||||
label: "Dine In",
|
||||
title: "Spacious Family Dining",
|
||||
items: [
|
||||
"Comfortable seating for all occasions",
|
||||
"Traditional ambiance with modern comfort",
|
||||
"Friendly, attentive service team",
|
||||
],
|
||||
buttons: [{ text: "Make Reservation", href: "/reservations" }],
|
||||
},
|
||||
{
|
||||
id: "buffet",
|
||||
label: "Buffet",
|
||||
title: "All You Can Eat Experience",
|
||||
items: [
|
||||
"Unlimited variety of traditional dishes",
|
||||
"Fresh preparations throughout service",
|
||||
"Perfect for group celebrations",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "online",
|
||||
label: "Online",
|
||||
title: "Order Online for Delivery",
|
||||
items: [
|
||||
"Easy online ordering system",
|
||||
"Fast home delivery service",
|
||||
"Special meal packages available",
|
||||
],
|
||||
buttons: [{ text: "Order Online", href: "#order" }],
|
||||
},
|
||||
{
|
||||
id: "private",
|
||||
label: "Private",
|
||||
title: "Private Dining Room",
|
||||
items: [
|
||||
"Exclusive space for events",
|
||||
"Customized menu options",
|
||||
"Complete catering available",
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Testimonials Section */}
|
||||
<div id="testimonials" data-section="testimonials" className="relative w-full py-20">
|
||||
<TestimonialCardTen
|
||||
title="Customer Reviews"
|
||||
description="Join thousands of satisfied customers who trust Little Village Restaurant for authentic Andhra cuisine and exceptional service."
|
||||
tag="4.1 Stars"
|
||||
tagIcon={Star}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Authentic Taste of Home",
|
||||
quote:
|
||||
"Every visit feels like returning home. The food is exactly as my grandmother used to make it. The hospitality is unmatched and the ambiance is so welcoming for families.",
|
||||
name: "Rajesh Kumar",
|
||||
role: "Regular Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-giving-thumbs-up-gray-wall_114579-63355.jpg?_wi=6",
|
||||
imageAlt: "Rajesh Kumar testimonial",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Perfect for Celebrations",
|
||||
quote:
|
||||
"We hosted our anniversary dinner here and it was absolutely wonderful. The private dining room is elegant, the food was delicious, and the staff made us feel special.",
|
||||
name: "Priya Sharma",
|
||||
role: "Business Owner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-shaking-hands_23-2148395404.jpg?_wi=6",
|
||||
imageAlt: "Priya Sharma testimonial",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Outstanding Quality",
|
||||
quote:
|
||||
"The quality of ingredients and preparation is exceptional. I've tried many restaurants but Little Village stands out for its authenticity and attention to detail.",
|
||||
name: "Anil Patel",
|
||||
role: "Food Enthusiast",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg?_wi=6",
|
||||
imageAlt: "Anil Patel testimonial",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Best Buffet in Town",
|
||||
quote: "The all-you-can-eat buffet offers incredible variety. Everything is fresh and flavorful. Great value for money!",
|
||||
name: "Meera Desai",
|
||||
role: "Frequent Visitor",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-talking-smiling-while-out-with-her-friends_23-2149316814.jpg?_wi=3",
|
||||
imageAlt: "Meera Desai testimonial",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Family Favorite",
|
||||
quote:
|
||||
"We bring our kids every month. They love the spacious layout and the variety of dishes. The staff is always kind to children.",
|
||||
name: "Vikram Singh",
|
||||
role: "Parent",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-hanging-out_23-2149436788.jpg?_wi=3",
|
||||
imageAlt: "Vikram Singh testimonial",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
title: "Online Ordering Convenience",
|
||||
quote:
|
||||
"The online ordering system is so convenient! Food arrives hot and well-packaged. Definitely my go-to for weekend dinners.",
|
||||
name: "Neha Gupta",
|
||||
role: "Working Professional",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-man-having-fun-while-proposing-toast-his-family-lunch-time_637285-3654.jpg?_wi=3",
|
||||
imageAlt: "Neha Gupta testimonial",
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Metrics Section */}
|
||||
<div id="metrics" data-section="metrics" className="bg-primary-cta/5">
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardTwo
|
||||
title="Little Village by Numbers"
|
||||
description="Trusted by thousands of customers who love authentic Andhra cuisine and warm hospitality."
|
||||
metrics={[
|
||||
{ id: "1", value: "Open Daily", description: "Until 11:30 PM" },
|
||||
{ id: "2", value: "Quick Response", description: "Book Your Table Fast" },
|
||||
{ id: "3", value: "Multiple Spaces", description: "Indoor & Private Rooms" },
|
||||
{ id: "4", value: "Expert Team", description: "Ready to Serve You" }
|
||||
]}
|
||||
title="Restaurant Details"
|
||||
description="Everything you need to know about our operations."
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{ id: "1", value: "11,540+", description: "Customer Reviews" },
|
||||
{ id: "2", value: "4.1★", description: "Average Rating" },
|
||||
{ id: "3", value: "5 Years", description: "Serving Community" },
|
||||
{ id: "4", value: "50+", description: "Menu Items" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* FAQ Section */}
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions about our services, hours, and offerings."
|
||||
tag="Help & Support"
|
||||
tagIcon={HelpCircle}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What are your opening hours?",
|
||||
content:
|
||||
"We are open daily and close at 11:30 PM. Please note that holidays like Holi may affect our operating hours. Call us at 090100 38444 for holiday-specific timings.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "How do I order online?",
|
||||
content:
|
||||
"You can order online through our website or via WhatsApp. Simply browse our menu, select items, add to cart, and proceed to checkout. We accept orders for delivery and takeout.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Do you offer table reservations?",
|
||||
content:
|
||||
"Yes! We accept table reservations for dine-in guests. Visit our reservations page or call us at 090100 38444 to book your table.",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "What payment methods do you accept?",
|
||||
content:
|
||||
"We accept cash, online transfers, and mobile payments. For online orders, multiple payment options are available at checkout.",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Do you have a private dining option?",
|
||||
content:
|
||||
"Yes! We have a private dining room perfect for celebrations, corporate events, and gatherings. Contact us for bookings and custom menus.",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
title: "Are there vegetarian options?",
|
||||
content:
|
||||
"Absolutely! We offer a wide variety of vegetarian dishes including veg curries, biryanis, breads, and starters. All items are clearly marked on our menu.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/wooden-table-with-glasses_1203-1742.jpg?_wi=3"
|
||||
imageAlt="Private dining room"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Little Village"
|
||||
@@ -342,7 +98,7 @@ export default function AdminPage() {
|
||||
socialLinks={[
|
||||
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
|
||||
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" },
|
||||
{ icon: MapPin, href: "https://maps.google.com", ariaLabel: "Location" },
|
||||
{ icon: MapPin, href: "https://maps.google.com", ariaLabel: "Location" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -1,19 +1,18 @@
|
||||
"use client";
|
||||
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import { Heart, Utensils, Instagram, Facebook, MapPin } from "lucide-react";
|
||||
import Link from "next/link";
|
||||
import { Instagram, Facebook, MapPin } from "lucide-react";
|
||||
|
||||
export default function MenuPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reservations", id: "reservations" },
|
||||
{ name: "Reservations", id: "/reservations" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
];
|
||||
|
||||
@@ -39,146 +38,39 @@ export default function MenuPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu-specialties" data-section="menu-specialties">
|
||||
<div id="menu-items" data-section="menu-items">
|
||||
<ProductCardOne
|
||||
title="Our Complete Menu"
|
||||
description="Explore our complete selection of authentic Andhra specialties and premium dishes prepared fresh daily."
|
||||
tag="All Favorites"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="fade"
|
||||
description="Explore our full selection of authentic Andhra dishes, carefully prepared with traditional recipes and premium ingredients."
|
||||
tag="Full Menu"
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Andhra Kodi Kura",
|
||||
price: "₹330",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lime-spices-near-tasty-rice-dish_23-2147894783.jpg?_wi=2",
|
||||
imageAlt: "Andhra Kodi Kura - Traditional chicken curry",
|
||||
id: "1", name: "Andhra Kodi Kura", price: "₹330", imageSrc: "http://img.b2bpic.net/free-photo/lime-spices-near-tasty-rice-dish_23-2147894783.jpg", imageAlt: "Andhra Kodi Kura - Traditional chicken curry"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Tandoori Chicken",
|
||||
price: "₹550",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mixed-grilled-meat-with-eggplant-rolls_140725-3463.jpg?_wi=2",
|
||||
imageAlt: "Tandoori Chicken - Grilled specialty",
|
||||
id: "2", name: "Tandoori Chicken", price: "₹550", imageSrc: "http://img.b2bpic.net/free-photo/mixed-grilled-meat-with-eggplant-rolls_140725-3463.jpg", imageAlt: "Tandoori Chicken - Grilled specialty"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Paneer Tikka Masala",
|
||||
price: "₹300",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-food-from-around-world_23-2151596621.jpg?_wi=2",
|
||||
imageAlt: "Paneer Tikka Masala - Creamy curry",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Hyderabadi Biryani",
|
||||
price: "₹280",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lime-spices-near-tasty-rice-dish_23-2147894783.jpg?_wi=3",
|
||||
imageAlt: "Hyderabadi Biryani - Fragrant rice specialty",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Gongura Mutton",
|
||||
price: "₹420",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mixed-grilled-meat-with-eggplant-rolls_140725-3463.jpg?_wi=3",
|
||||
imageAlt: "Gongura Mutton - Traditional sorrel leaf curry",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Dal Makhani",
|
||||
price: "₹220",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-food-from-around-world_23-2151596621.jpg?_wi=3",
|
||||
imageAlt: "Dal Makhani - Creamy lentil curry",
|
||||
},
|
||||
id: "3", name: "Paneer Tikka Masala", price: "₹300", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-food-from-around-world_23-2151596621.jpg", imageAlt: "Paneer Tikka Masala - Creamy curry"
|
||||
}
|
||||
]}
|
||||
gridVariant="bento-grid"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "#order",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Order Now", href: "#order" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu-categories" data-section="menu-categories">
|
||||
<FeatureCardTwelve
|
||||
features={[
|
||||
{
|
||||
id: "starters",
|
||||
label: "Starters",
|
||||
title: "Appetizers & Snacks",
|
||||
items: [
|
||||
"Samosas with tangy tamarind sauce",
|
||||
"Mirchi Bajji - spiced chili fritters",
|
||||
"Keema Pav - spiced meat parcels",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "View More",
|
||||
href: "#starters",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "mains",
|
||||
label: "Mains",
|
||||
title: "Curries & Rice Dishes",
|
||||
items: [
|
||||
"Traditional Andhra curries with authentic spices",
|
||||
"Fragrant biryanis and rice preparations",
|
||||
"Tandoori and grilled specialties",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "View More",
|
||||
href: "#mains",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "breads",
|
||||
label: "Breads",
|
||||
title: "Fresh Baked Naans & Rotis",
|
||||
items: [
|
||||
"Butter Naan - soft and fluffy",
|
||||
"Lachcha Paratha - layered Indian flatbread",
|
||||
"Garlic Naan - aromatic specialty",
|
||||
],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="Menu Categories"
|
||||
description="Browse our diverse selection of authentic Andhra cuisine organized by course."
|
||||
tag="Explore Categories"
|
||||
tagIcon={Utensils}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu-footer" data-section="menu-footer">
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Little Village"
|
||||
copyrightText="© 2025 Little Village Restaurant. All rights reserved. Authentic Andhra Cuisine."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com",
|
||||
ariaLabel: "Facebook",
|
||||
},
|
||||
{
|
||||
icon: MapPin,
|
||||
href: "https://maps.google.com",
|
||||
ariaLabel: "Location",
|
||||
},
|
||||
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
|
||||
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" },
|
||||
{ icon: MapPin, href: "https://maps.google.com", ariaLabel: "Location" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
285
src/app/page.tsx
285
src/app/page.tsx
@@ -1,6 +1,5 @@
|
||||
"use client";
|
||||
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial";
|
||||
@@ -10,6 +9,7 @@ import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCar
|
||||
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
|
||||
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import Link from "next/link";
|
||||
import { Star, Heart, Utensils, HelpCircle, Instagram, Facebook, MapPin } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
@@ -17,7 +17,7 @@ export default function HomePage() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reservations", id: "reservations" },
|
||||
{ name: "Reservations", id: "/reservations" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
];
|
||||
|
||||
@@ -45,51 +45,34 @@ export default function HomePage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
background={{ variant: "glowing-orb" }}
|
||||
title="Traditional Provisions, Modern Experience"
|
||||
description="Welcome to Little Village Restaurant. We serve authentic Andhra cuisine in a spacious, unpretentious setting perfect for families and food lovers. Experience our traditional recipes, warm hospitality, and online ordering."
|
||||
tag="4.1★ Highly Rated"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cook-is-fry-vegetables-with-spices-sauce-wok-cooking-process-asian-restaurant_613910-4977.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cook-is-fry-vegetables-with-spices-sauce-wok-cooking-process-asian-restaurant_613910-4977.jpg"
|
||||
imageAlt="Little Village Restaurant interior"
|
||||
mediaAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
name: "Rajesh Kumar",
|
||||
handle: "Regular Customer",
|
||||
testimonial: "Best authentic Andhra biryani in the city. The ambiance is so welcoming for families!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-giving-thumbs-up-gray-wall_114579-63355.jpg?_wi=1",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
name: "Rajesh Kumar", handle: "Regular Customer", testimonial: "Best authentic Andhra biryani in the city. The ambiance is so welcoming for families!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-giving-thumbs-up-gray-wall_114579-63355.jpg", imageAlt: "Rajesh Kumar"
|
||||
},
|
||||
{
|
||||
name: "Priya Sharma",
|
||||
handle: "Food Blogger",
|
||||
testimonial: "Every dish is prepared with such care and traditional flavors. Highly recommend!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-shaking-hands_23-2148395404.jpg?_wi=1",
|
||||
imageAlt: "Priya Sharma",
|
||||
name: "Priya Sharma", handle: "Food Blogger", testimonial: "Every dish is prepared with such care and traditional flavors. Highly recommend!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-shaking-hands_23-2148395404.jpg", imageAlt: "Priya Sharma"
|
||||
},
|
||||
{
|
||||
name: "Anil Patel",
|
||||
handle: "Business Owner",
|
||||
testimonial: "Perfect venue for corporate dinners and celebrations. Great food and service!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg?_wi=1",
|
||||
imageAlt: "Anil Patel",
|
||||
},
|
||||
name: "Anil Patel", handle: "Business Owner", testimonial: "Perfect venue for corporate dinners and celebrations. Great food and service!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg", imageAlt: "Anil Patel"
|
||||
}
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "#order",
|
||||
},
|
||||
{ text: "View Menu", href: "/menu" },
|
||||
{ text: "Order Now", href: "#order" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -101,40 +84,24 @@ export default function HomePage() {
|
||||
description="Our most loved specialties, carefully crafted with traditional Andhra recipes and premium ingredients."
|
||||
tag="Popular Choices"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="fade"
|
||||
tagAnimation="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Andhra Kodi Kura",
|
||||
price: "₹330",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lime-spices-near-tasty-rice-dish_23-2147894783.jpg?_wi=1",
|
||||
imageAlt: "Andhra Kodi Kura - Traditional chicken curry",
|
||||
id: "1", name: "Andhra Kodi Kura", price: "₹330", imageSrc: "http://img.b2bpic.net/free-photo/lime-spices-near-tasty-rice-dish_23-2147894783.jpg", imageAlt: "Andhra Kodi Kura - Traditional chicken curry"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Tandoori Chicken",
|
||||
price: "₹550",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mixed-grilled-meat-with-eggplant-rolls_140725-3463.jpg?_wi=1",
|
||||
imageAlt: "Tandoori Chicken - Grilled specialty",
|
||||
id: "2", name: "Tandoori Chicken", price: "₹550", imageSrc: "http://img.b2bpic.net/free-photo/mixed-grilled-meat-with-eggplant-rolls_140725-3463.jpg", imageAlt: "Tandoori Chicken - Grilled specialty"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Paneer Tikka Masala",
|
||||
price: "₹300",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-food-from-around-world_23-2151596621.jpg?_wi=1",
|
||||
imageAlt: "Paneer Tikka Masala - Creamy curry",
|
||||
},
|
||||
id: "3", name: "Paneer Tikka Masala", price: "₹300", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-food-from-around-world_23-2151596621.jpg", imageAlt: "Paneer Tikka Masala - Creamy curry"
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "View Full Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "View Full Menu", href: "/menu" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -142,130 +109,64 @@ export default function HomePage() {
|
||||
<FeatureCardTwelve
|
||||
features={[
|
||||
{
|
||||
id: "dine-in",
|
||||
label: "Dine In",
|
||||
title: "Spacious Family Dining",
|
||||
items: [
|
||||
"Comfortable seating for all occasions",
|
||||
"Traditional ambiance with modern comfort",
|
||||
"Friendly, attentive service team",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Make Reservation",
|
||||
href: "/reservations",
|
||||
},
|
||||
id: "dine-in", label: "Dine In", title: "Spacious Family Dining", items: [
|
||||
"Comfortable seating for all occasions", "Traditional ambiance with modern comfort", "Friendly, attentive service team"
|
||||
],
|
||||
buttons: [{ text: "Make Reservation", href: "/reservations" }]
|
||||
},
|
||||
{
|
||||
id: "buffet",
|
||||
label: "Buffet",
|
||||
title: "All You Can Eat Experience",
|
||||
items: [
|
||||
"Unlimited variety of traditional dishes",
|
||||
"Fresh preparations throughout service",
|
||||
"Perfect for group celebrations",
|
||||
],
|
||||
id: "buffet", label: "Buffet", title: "All You Can Eat Experience", items: [
|
||||
"Unlimited variety of traditional dishes", "Fresh preparations throughout service", "Perfect for group celebrations"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "online",
|
||||
label: "Online",
|
||||
title: "Order Online for Delivery",
|
||||
items: [
|
||||
"Easy online ordering system",
|
||||
"Fast home delivery service",
|
||||
"Special meal packages available",
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Order Online",
|
||||
href: "#order",
|
||||
},
|
||||
id: "online", label: "Online", title: "Order Online for Delivery", items: [
|
||||
"Easy online ordering system", "Fast home delivery service", "Special meal packages available"
|
||||
],
|
||||
buttons: [{ text: "Order Online", href: "#order" }]
|
||||
},
|
||||
{
|
||||
id: "private",
|
||||
label: "Private",
|
||||
title: "Private Dining Room",
|
||||
items: [
|
||||
"Exclusive space for events",
|
||||
"Customized menu options",
|
||||
"Complete catering available",
|
||||
],
|
||||
},
|
||||
id: "private", label: "Private", title: "Private Dining Room", items: [
|
||||
"Exclusive space for events", "Customized menu options", "Complete catering available"
|
||||
]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="Our Services"
|
||||
description="Discover the variety of dining and ordering options we offer to serve you better."
|
||||
tag="Ways to Enjoy"
|
||||
tagIcon={Utensils}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
tag="Ways to Enjoy"
|
||||
tagIcon={Utensils}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", title: "Authentic Taste of Home", quote: "Every visit feels like returning home. The food is exactly as my grandmother used to make it. The hospitality is unmatched and the ambiance is so welcoming for families.", name: "Rajesh Kumar", role: "Regular Customer", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-giving-thumbs-up-gray-wall_114579-63355.jpg", imageAlt: "Rajesh Kumar testimonial"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Perfect for Celebrations", quote: "We hosted our anniversary dinner here and it was absolutely wonderful. The private dining room is elegant, the food was delicious, and the staff made us feel special.", name: "Priya Sharma", role: "Business Owner", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-shaking-hands_23-2148395404.jpg", imageAlt: "Priya Sharma testimonial"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Outstanding Quality", quote: "The quality of ingredients and preparation is exceptional. I've tried many restaurants but Little Village stands out for its authenticity and attention to detail.", name: "Anil Patel", role: "Food Enthusiast", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg", imageAlt: "Anil Patel testimonial"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Best Buffet in Town", quote: "The all-you-can-eat buffet offers incredible variety. Everything is fresh and flavorful. Great value for money!", name: "Meera Desai", role: "Frequent Visitor", imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-talking-smiling-while-out-with-her-friends_23-2149316814.jpg", imageAlt: "Meera Desai testimonial"
|
||||
},
|
||||
{
|
||||
id: "5", title: "Family Favorite", quote: "We bring our kids every month. They love the spacious layout and the variety of dishes. The staff is always kind to children.", name: "Vikram Singh", role: "Parent", imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-hanging-out_23-2149436788.jpg", imageAlt: "Vikram Singh testimonial"
|
||||
},
|
||||
{
|
||||
id: "6", title: "Online Ordering Convenience", quote: "The online ordering system is so convenient! Food arrives hot and well-packaged. Definitely my go-to for weekend dinners.", name: "Neha Gupta", role: "Working Professional", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-man-having-fun-while-proposing-toast-his-family-lunch-time_637285-3654.jpg", imageAlt: "Neha Gupta testimonial"
|
||||
}
|
||||
]}
|
||||
title="Customer Reviews"
|
||||
description="Join thousands of satisfied customers who trust Little Village Restaurant for authentic Andhra cuisine and exceptional service."
|
||||
tag="4.1 Stars"
|
||||
tagIcon={Star}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Authentic Taste of Home",
|
||||
quote: "Every visit feels like returning home. The food is exactly as my grandmother used to make it. The hospitality is unmatched and the ambiance is so welcoming for families.",
|
||||
name: "Rajesh Kumar",
|
||||
role: "Regular Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-giving-thumbs-up-gray-wall_114579-63355.jpg?_wi=2",
|
||||
imageAlt: "Rajesh Kumar testimonial",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Perfect for Celebrations",
|
||||
quote: "We hosted our anniversary dinner here and it was absolutely wonderful. The private dining room is elegant, the food was delicious, and the staff made us feel special.",
|
||||
name: "Priya Sharma",
|
||||
role: "Business Owner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-shaking-hands_23-2148395404.jpg?_wi=2",
|
||||
imageAlt: "Priya Sharma testimonial",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Outstanding Quality",
|
||||
quote: "The quality of ingredients and preparation is exceptional. I've tried many restaurants but Little Village stands out for its authenticity and attention to detail.",
|
||||
name: "Anil Patel",
|
||||
role: "Food Enthusiast",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg?_wi=2",
|
||||
imageAlt: "Anil Patel testimonial",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Best Buffet in Town",
|
||||
quote: "The all-you-can-eat buffet offers incredible variety. Everything is fresh and flavorful. Great value for money!",
|
||||
name: "Meera Desai",
|
||||
role: "Frequent Visitor",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-woman-talking-smiling-while-out-with-her-friends_23-2149316814.jpg?_wi=1",
|
||||
imageAlt: "Meera Desai testimonial",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Family Favorite",
|
||||
quote: "We bring our kids every month. They love the spacious layout and the variety of dishes. The staff is always kind to children.",
|
||||
name: "Vikram Singh",
|
||||
role: "Parent",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-hanging-out_23-2149436788.jpg?_wi=1",
|
||||
imageAlt: "Vikram Singh testimonial",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
title: "Online Ordering Convenience",
|
||||
quote: "The online ordering system is so convenient! Food arrives hot and well-packaged. Definitely my go-to for weekend dinners.",
|
||||
name: "Neha Gupta",
|
||||
role: "Working Professional",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-man-having-fun-while-proposing-toast-his-family-lunch-time_637285-3654.jpg?_wi=1",
|
||||
imageAlt: "Neha Gupta testimonial",
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -274,26 +175,10 @@ export default function HomePage() {
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardTwo
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "11,540+",
|
||||
description: "Customer Reviews",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "4.1★",
|
||||
description: "Average Rating",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "5 Years",
|
||||
description: "Serving Community",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "50+",
|
||||
description: "Menu Items",
|
||||
},
|
||||
{ id: "1", value: "11,540+", description: "Customer Reviews" },
|
||||
{ id: "2", value: "4.1★", description: "Average Rating" },
|
||||
{ id: "3", value: "5 Years", description: "Serving Community" },
|
||||
{ id: "4", value: "50+", description: "Menu Items" }
|
||||
]}
|
||||
title="Little Village by Numbers"
|
||||
description="Trusted by thousands of customers who love authentic Andhra cuisine and warm hospitality."
|
||||
@@ -308,44 +193,32 @@ export default function HomePage() {
|
||||
<FaqSplitMedia
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What are your opening hours?",
|
||||
content: "We are open daily and close at 11:30 PM. Please note that holidays like Holi may affect our operating hours. Call us at 090100 38444 for holiday-specific timings.",
|
||||
id: "1", title: "What are your opening hours?", content: "We are open daily and close at 11:30 PM. Please note that holidays like Holi may affect our operating hours. Call us at 090100 38444 for holiday-specific timings."
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "How do I order online?",
|
||||
content: "You can order online through our website or via WhatsApp. Simply browse our menu, select items, add to cart, and proceed to checkout. We accept orders for delivery and takeout.",
|
||||
id: "2", title: "How do I order online?", content: "You can order online through our website or via WhatsApp. Simply browse our menu, select items, add to cart, and proceed to checkout. We accept orders for delivery and takeout."
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Do you offer table reservations?",
|
||||
content: "Yes! We accept table reservations for dine-in guests. Visit our reservations page or call us at 090100 38444 to book your table.",
|
||||
id: "3", title: "Do you offer table reservations?", content: "Yes! We accept table reservations for dine-in guests. Visit our reservations page or call us at 090100 38444 to book your table."
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "What payment methods do you accept?",
|
||||
content: "We accept cash, online transfers, and mobile payments. For online orders, multiple payment options are available at checkout.",
|
||||
id: "4", title: "What payment methods do you accept?", content: "We accept cash, online transfers, and mobile payments. For online orders, multiple payment options are available at checkout."
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Do you have a private dining option?",
|
||||
content: "Yes! We have a private dining room perfect for celebrations, corporate events, and gatherings. Contact us for bookings and custom menus.",
|
||||
id: "5", title: "Do you have a private dining option?", content: "Yes! We have a private dining room perfect for celebrations, corporate events, and gatherings. Contact us for bookings and custom menus."
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
title: "Are there vegetarian options?",
|
||||
content: "Absolutely! We offer a wide variety of vegetarian dishes including veg curries, biryanis, breads, and starters. All items are clearly marked on our menu.",
|
||||
},
|
||||
id: "6", title: "Are there vegetarian options?", content: "Absolutely! We offer a wide variety of vegetarian dishes including veg curries, biryanis, breads, and starters. All items are clearly marked on our menu."
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/wooden-table-with-glasses_1203-1742.jpg?_wi=1"
|
||||
imageAlt="Private dining room"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions about our services, hours, and offerings."
|
||||
tag="Help & Support"
|
||||
tagIcon={HelpCircle}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/wooden-table-with-glasses_1203-1742.jpg"
|
||||
imageAlt="Private dining room"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
@@ -357,21 +230,9 @@ export default function HomePage() {
|
||||
logoText="Little Village"
|
||||
copyrightText="© 2025 Little Village Restaurant. All rights reserved. Authentic Andhra Cuisine."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "https://instagram.com",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com",
|
||||
ariaLabel: "Facebook",
|
||||
},
|
||||
{
|
||||
icon: MapPin,
|
||||
href: "https://maps.google.com",
|
||||
ariaLabel: "Location",
|
||||
},
|
||||
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
|
||||
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" },
|
||||
{ icon: MapPin, href: "https://maps.google.com", ariaLabel: "Location" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user