Update src/app/page.tsx
This commit is contained in:
313
src/app/page.tsx
313
src/app/page.tsx
@@ -33,35 +33,21 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
name: "Menu", id: "#menu"},
|
||||
{
|
||||
name: "Specials",
|
||||
id: "#specials",
|
||||
},
|
||||
name: "Specials", id: "#specials"},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
brandName="Cafeteria Regio's"
|
||||
button={{
|
||||
text: "Order Online",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Order Online", href: "#contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -71,13 +57,9 @@ export default function LandingPage() {
|
||||
description="Savor the authentic taste of home-cooked meals and premium coffee in a luxurious, inviting atmosphere. Experience culinary delight with every visit."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
text: "View Menu", href: "#menu"},
|
||||
{
|
||||
text: "Order Online",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Order Online", href: "#contact"},
|
||||
]}
|
||||
buttonAnimation="opacity"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/delicious-coffee-cup-indoors_23-2150708144.jpg"
|
||||
@@ -93,17 +75,11 @@ export default function LandingPage() {
|
||||
description="At Cafeteria Regio's, we believe in serving more than just food; we offer a delightful experience rooted in quality ingredients and exceptional service. With a legacy of warm hospitality, we've become a cherished spot for delicious meals and memorable moments. Our passion for authentic flavors and a cozy ambiance drives everything we do."
|
||||
metrics={[
|
||||
{
|
||||
value: "15+",
|
||||
title: "Years Serving",
|
||||
},
|
||||
value: "15+", title: "Years Serving"},
|
||||
{
|
||||
value: "1200+",
|
||||
title: "Happy Customers",
|
||||
},
|
||||
value: "1200+", title: "Happy Customers"},
|
||||
{
|
||||
value: "50+",
|
||||
title: "Signature Dishes",
|
||||
},
|
||||
value: "50+", title: "Signature Dishes"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chef-placing-fresh-tomatoes-salad_23-2148516911.jpg"
|
||||
imageAlt="Chef preparing food in a luxurious kitchen"
|
||||
@@ -120,24 +96,16 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
icon: Wheat,
|
||||
title: "Chilaquiles Rojos",
|
||||
description: "Our famous red chilaquiles with tender shredded chicken, fresh cream, and cheese, a breakfast classic with rich flavor.",
|
||||
},
|
||||
title: "Chilaquiles Rojos", description: "Our famous red chilaquiles with tender shredded chicken, fresh cream, and cheese, a breakfast classic with rich flavor."},
|
||||
{
|
||||
icon: Beef,
|
||||
title: "Bistec a la Plancha",
|
||||
description: "Succulent grilled steak, perfectly seasoned and served with your choice of savory sides, a true taste of home.",
|
||||
},
|
||||
title: "Bistec a la Plancha", description: "Succulent grilled steak, perfectly seasoned and served with your choice of savory sides, a true taste of home."},
|
||||
{
|
||||
icon: Coffee,
|
||||
title: "Premium Regio's Coffee",
|
||||
description: "Start your day with our signature strong and aromatic coffee, brewed to perfection for the ultimate morning boost.",
|
||||
},
|
||||
title: "Premium Regio's Coffee", description: "Start your day with our signature strong and aromatic coffee, brewed to perfection for the ultimate morning boost."},
|
||||
{
|
||||
icon: Flame,
|
||||
title: "Hearty Breakfast Plates",
|
||||
description: "Enjoy generous portions of classic breakfast combinations, ensuring a satisfying start to your day.",
|
||||
},
|
||||
title: "Hearty Breakfast Plates", description: "Enjoy generous portions of classic breakfast combinations, ensuring a satisfying start to your day."},
|
||||
]}
|
||||
title="Signature Delights"
|
||||
description="Explore our exquisite selection of dishes, crafted with the freshest ingredients and a touch of traditional flavor. From hearty breakfasts to sumptuous lunches, every bite is a culinary journey."
|
||||
@@ -152,53 +120,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p-chilaquiles",
|
||||
name: "Chilaquiles Rojos con Pollo",
|
||||
price: "$12.99",
|
||||
variant: "Spicy Red Sauce",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mexican-meal_23-2148159757.jpg",
|
||||
imageAlt: "Chilaquiles rojos with chicken",
|
||||
},
|
||||
id: "p-chilaquiles", name: "Chilaquiles Rojos con Pollo", price: "$12.99", variant: "Spicy Red Sauce", imageSrc: "http://img.b2bpic.net/free-photo/mexican-meal_23-2148159757.jpg", imageAlt: "Chilaquiles rojos with chicken"},
|
||||
{
|
||||
id: "p-bistec",
|
||||
name: "Bistec a la Plancha",
|
||||
price: "$18.50",
|
||||
variant: "Served with Rice & Beans",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-dipping-steak-piece-into-sour-sauce_140725-5004.jpg",
|
||||
imageAlt: "Grilled steak with sides",
|
||||
},
|
||||
id: "p-bistec", name: "Bistec a la Plancha", price: "$18.50", variant: "Served with Rice & Beans", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-dipping-steak-piece-into-sour-sauce_140725-5004.jpg", imageAlt: "Grilled steak with sides"},
|
||||
{
|
||||
id: "p-pancakes",
|
||||
name: "Gourmet Pancake Stack",
|
||||
price: "$10.00",
|
||||
variant: "Berries & Maple Syrup",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-pancakes-with-pomegranate-seeds-bananas-raspberries_23-2148354693.jpg",
|
||||
imageAlt: "Stack of gourmet pancakes",
|
||||
},
|
||||
id: "p-pancakes", name: "Gourmet Pancake Stack", price: "$10.00", variant: "Berries & Maple Syrup", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-pancakes-with-pomegranate-seeds-bananas-raspberries_23-2148354693.jpg", imageAlt: "Stack of gourmet pancakes"},
|
||||
{
|
||||
id: "p-tacos",
|
||||
name: "Assorted Street Tacos",
|
||||
price: "$14.00",
|
||||
variant: "Choice of 3 Tacos",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/clipboard-near-food-sombrero_23-2147740804.jpg",
|
||||
imageAlt: "Variety of Mexican street tacos",
|
||||
},
|
||||
id: "p-tacos", name: "Assorted Street Tacos", price: "$14.00", variant: "Choice of 3 Tacos", imageSrc: "http://img.b2bpic.net/free-photo/clipboard-near-food-sombrero_23-2147740804.jpg", imageAlt: "Variety of Mexican street tacos"},
|
||||
{
|
||||
id: "p-sandwich",
|
||||
name: "Regio's Club Sandwich",
|
||||
price: "$11.50",
|
||||
variant: "Served with Fries",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/toas-sandwich-table_23-2148454702.jpg",
|
||||
imageAlt: "Club sandwich with french fries",
|
||||
},
|
||||
id: "p-sandwich", name: "Regio's Club Sandwich", price: "$11.50", variant: "Served with Fries", imageSrc: "http://img.b2bpic.net/free-photo/toas-sandwich-table_23-2148454702.jpg", imageAlt: "Club sandwich with french fries"},
|
||||
{
|
||||
id: "p-salad",
|
||||
name: "Chicken Caesar Salad",
|
||||
price: "$13.00",
|
||||
variant: "Freshly Grilled Chicken",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/main-course-restaurant_7939-2358.jpg",
|
||||
imageAlt: "Chicken Caesar salad",
|
||||
},
|
||||
id: "p-salad", name: "Chicken Caesar Salad", price: "$13.00", variant: "Freshly Grilled Chicken", imageSrc: "http://img.b2bpic.net/free-photo/main-course-restaurant_7939-2358.jpg", imageAlt: "Chicken Caesar salad"},
|
||||
]}
|
||||
title="Our Full Menu"
|
||||
description="Indulge in our diverse menu, featuring classic comforts and unique creations, all prepared with care and passion. Find your next favorite meal."
|
||||
@@ -207,57 +139,28 @@ export default function LandingPage() {
|
||||
|
||||
<div id="specials" data-section="specials">
|
||||
<PricingCardNine
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "pl-breakfast",
|
||||
title: "Morning Glory Combo",
|
||||
price: "$15.00",
|
||||
period: "/day",
|
||||
features: [
|
||||
"Chilaquiles/Pancakes",
|
||||
"Strong Coffee/Juice",
|
||||
"Fresh Fruit Bowl",
|
||||
],
|
||||
id: "pl-breakfast", title: "Morning Glory Combo", price: "$15.00", period: "/day", features: [
|
||||
"Chilaquiles/Pancakes", "Strong Coffee/Juice", "Fresh Fruit Bowl"],
|
||||
button: {
|
||||
text: "Order Breakfast",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-breakfast-meal-composition_23-2148833950.jpg",
|
||||
imageAlt: "Breakfast combo plate",
|
||||
},
|
||||
text: "Order Breakfast"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-breakfast-meal-composition_23-2148833950.jpg", imageAlt: "Breakfast combo plate"},
|
||||
{
|
||||
id: "pl-lunch",
|
||||
title: "Executive Lunch Special",
|
||||
price: "$22.00",
|
||||
period: "/day",
|
||||
features: [
|
||||
"Bistec/Tacos Platter",
|
||||
"Soft Drink/Water",
|
||||
"Dessert of the Day",
|
||||
],
|
||||
id: "pl-lunch", title: "Executive Lunch Special", price: "$22.00", period: "/day", features: [
|
||||
"Bistec/Tacos Platter", "Soft Drink/Water", "Dessert of the Day"],
|
||||
button: {
|
||||
text: "Order Lunch",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-potato-pies-with-pumpkin-fresh-tomatoes-grey-background-dinner-oven-bake-color-dish-slice_140725-121682.jpg",
|
||||
imageAlt: "Lunch special plate",
|
||||
},
|
||||
text: "Order Lunch"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-potato-pies-with-pumpkin-fresh-tomatoes-grey-background-dinner-oven-bake-color-dish-slice_140725-121682.jpg", imageAlt: "Lunch special plate"},
|
||||
{
|
||||
id: "pl-family",
|
||||
title: "Family Feast Package",
|
||||
price: "$60.00",
|
||||
period: "/package",
|
||||
features: [
|
||||
"Main Course for 4",
|
||||
"2 Large Sides",
|
||||
"4 Soft Drinks",
|
||||
],
|
||||
id: "pl-family", title: "Family Feast Package", price: "$60.00", period: "/package", features: [
|
||||
"Main Course for 4", "2 Large Sides", "4 Soft Drinks"],
|
||||
button: {
|
||||
text: "Order Family Meal",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-dining-out_23-2149187257.jpg",
|
||||
imageAlt: "Family meal platter",
|
||||
},
|
||||
text: "Order Family Meal"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-dining-out_23-2149187257.jpg", imageAlt: "Family meal platter"},
|
||||
]}
|
||||
title="Daily Specials & Combos"
|
||||
description="Discover exceptional value with our daily specials and curated meal combos, perfect for any appetite. Taste quality without compromising on price."
|
||||
@@ -271,64 +174,28 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t-1",
|
||||
name: "Karla Rodriguez Gracia",
|
||||
role: "Local Guide",
|
||||
company: "Customer",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-relaxed-woman-drinks-warm-tea-listens-music-ebook-kitchen_1258-203924.jpg",
|
||||
videoAriaLabel: "Testimonial by Karla Rodriguez Gracia",
|
||||
},
|
||||
id: "t-1", name: "Karla Rodriguez Gracia", role: "Local Guide", company: "Customer", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-relaxed-woman-drinks-warm-tea-listens-music-ebook-kitchen_1258-203924.jpg", videoAriaLabel: "Testimonial by Karla Rodriguez Gracia"},
|
||||
{
|
||||
id: "t-2",
|
||||
name: "Catarino Ibarra Almazan",
|
||||
role: "Local Guide",
|
||||
company: "Customer",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-gardener-wearing-jumpsuit-hat-working-gloves-holding-fresh-tomatoes-his-chest-happy-cheerful-smiling-standing-purple-wall_141793-53506.jpg",
|
||||
videoAriaLabel: "Testimonial by Catarino Ibarra Almazan",
|
||||
},
|
||||
id: "t-2", name: "Catarino Ibarra Almazan", role: "Local Guide", company: "Customer", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-gardener-wearing-jumpsuit-hat-working-gloves-holding-fresh-tomatoes-his-chest-happy-cheerful-smiling-standing-purple-wall_141793-53506.jpg", videoAriaLabel: "Testimonial by Catarino Ibarra Almazan"},
|
||||
{
|
||||
id: "t-3",
|
||||
name: "Maria Garcia",
|
||||
role: "Food Enthusiast",
|
||||
company: "Diner",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mixed-race-student-translate-foreign-words-write-transcription-into-notepad_273609-18140.jpg",
|
||||
videoAriaLabel: "Testimonial by Maria Garcia",
|
||||
},
|
||||
id: "t-3", name: "Maria Garcia", role: "Food Enthusiast", company: "Diner", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mixed-race-student-translate-foreign-words-write-transcription-into-notepad_273609-18140.jpg", videoAriaLabel: "Testimonial by Maria Garcia"},
|
||||
{
|
||||
id: "t-4",
|
||||
name: "Jose Sanchez",
|
||||
role: "Regular Patron",
|
||||
company: "Diner",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-fashionable-bearded-male-with-stylish-haircut-drinks-glass-cappuccino-sitting-cafe-outdoors_613910-17989.jpg",
|
||||
videoAriaLabel: "Testimonial by Jose Sanchez",
|
||||
},
|
||||
id: "t-4", name: "Jose Sanchez", role: "Regular Patron", company: "Diner", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-fashionable-bearded-male-with-stylish-haircut-drinks-glass-cappuccino-sitting-cafe-outdoors_613910-17989.jpg", videoAriaLabel: "Testimonial by Jose Sanchez"},
|
||||
{
|
||||
id: "t-5",
|
||||
name: "Brenda Lopez",
|
||||
role: "Local Business Owner",
|
||||
company: "Diner",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-stylish-denim-jacket-coffee-shop-with-blank-smartphone-screen_273609-4689.jpg",
|
||||
videoAriaLabel: "Testimonial by Brenda Lopez",
|
||||
},
|
||||
id: "t-5", name: "Brenda Lopez", role: "Local Business Owner", company: "Diner", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-stylish-denim-jacket-coffee-shop-with-blank-smartphone-screen_273609-4689.jpg", videoAriaLabel: "Testimonial by Brenda Lopez"},
|
||||
]}
|
||||
kpiItems={[
|
||||
{
|
||||
value: "5-Star",
|
||||
label: "Average Rating",
|
||||
},
|
||||
value: "5-Star", label: "Average Rating"},
|
||||
{
|
||||
value: "1200+",
|
||||
label: "Satisfied Guests",
|
||||
},
|
||||
value: "1200+", label: "Satisfied Guests"},
|
||||
{
|
||||
value: "Authentic",
|
||||
label: "Flavor Guarantee",
|
||||
},
|
||||
value: "Authentic", label: "Flavor Guarantee"},
|
||||
]}
|
||||
title="What Our Guests Say"
|
||||
description="Hear from our delighted customers who have experienced the warmth, quality, and flavor of Cafeteria Regio's. Your satisfaction is our greatest reward."
|
||||
@@ -341,25 +208,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1",
|
||||
title: "Do you offer vegetarian options?",
|
||||
content: "Yes, we have a variety of delicious vegetarian dishes and can customize many of our plates to suit your dietary preferences. Please ask your server for details.",
|
||||
},
|
||||
id: "faq-1", title: "Do you offer vegetarian options?", content: "Yes, we have a variety of delicious vegetarian dishes and can customize many of our plates to suit your dietary preferences. Please ask your server for details."},
|
||||
{
|
||||
id: "faq-2",
|
||||
title: "Can I make a reservation?",
|
||||
content: "While we operate on a first-come, first-served basis, we can accommodate large groups with advance notice. Please call us directly to discuss your party's needs.",
|
||||
},
|
||||
id: "faq-2", title: "Can I make a reservation?", content: "While we operate on a first-come, first-served basis, we can accommodate large groups with advance notice. Please call us directly to discuss your party's needs."},
|
||||
{
|
||||
id: "faq-3",
|
||||
title: "Do you offer catering services?",
|
||||
content: "Absolutely! Cafeteria Regio's provides catering for various events. Contact us to discuss your event size, menu preferences, and receive a custom quote.",
|
||||
},
|
||||
id: "faq-3", title: "Do you offer catering services?", content: "Absolutely! Cafeteria Regio's provides catering for various events. Contact us to discuss your event size, menu preferences, and receive a custom quote."},
|
||||
{
|
||||
id: "faq-4",
|
||||
title: "What are your operating hours?",
|
||||
content: "We are open Monday to Friday from 7 AM to 3 PM, and Saturday to Sunday from 8 AM to 2 PM. We look forward to serving you!",
|
||||
},
|
||||
id: "faq-4", title: "What are your operating hours?", content: "We are open Monday to Friday from 7 AM to 3 PM, and Saturday to Sunday from 8 AM to 2 PM. We look forward to serving you!"},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find quick answers to common inquiries about our menu, services, and hours at Cafeteria Regio's."
|
||||
@@ -371,18 +226,13 @@ export default function LandingPage() {
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
text="Ready to savor the taste? Visit us, call us, or send us a message! We look forward to welcoming you to Cafeteria Regio's."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "https://maps.google.com/?q=Cafeteria+Regio's",
|
||||
},
|
||||
text: "Get Directions", href: "https://maps.google.com/?q=Cafeteria+Regio's"},
|
||||
{
|
||||
text: "Call Us",
|
||||
href: "tel:+1234567890",
|
||||
},
|
||||
text: "Call Us", href: "tel:+1234567890"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -392,62 +242,37 @@ export default function LandingPage() {
|
||||
logoText="Cafeteria Regio's"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#hero",
|
||||
},
|
||||
label: "Home", href: "#hero"},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About Us", href: "#about"},
|
||||
{
|
||||
label: "Our Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Our Menu", href: "#menu"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
title: "Menu", items: [
|
||||
{
|
||||
label: "Breakfast",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Breakfast", href: "#menu"},
|
||||
{
|
||||
label: "Lunch",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Lunch", href: "#menu"},
|
||||
{
|
||||
label: "Specials",
|
||||
href: "#specials",
|
||||
},
|
||||
label: "Specials", href: "#specials"},
|
||||
{
|
||||
label: "Drinks",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Drinks", href: "#menu"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
label: "Facebook", href: "#"},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
label: "Instagram", href: "#"},
|
||||
{
|
||||
label: "Reservations",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Reservations", href: "#contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user