Update src/app/page.tsx
This commit is contained in:
199
src/app/page.tsx
199
src/app/page.tsx
@@ -30,29 +30,17 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "#gallery",
|
||||
},
|
||||
name: "Gallery", id: "#gallery"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu-highlights",
|
||||
},
|
||||
name: "Menu", id: "#menu-highlights"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "#reviews",
|
||||
},
|
||||
name: "Reviews", id: "#reviews"},
|
||||
{
|
||||
name: "Hours",
|
||||
id: "#hours",
|
||||
},
|
||||
name: "Hours", id: "#hours"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
brandName="The Mood Bar & Grill"
|
||||
/>
|
||||
@@ -61,19 +49,14 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
logoText="The Mood"
|
||||
description="Cold drafts. Moody Wings. No pretense. Countryside’s favorite bar since 1972."
|
||||
buttons={[
|
||||
{
|
||||
text: "See the Menu",
|
||||
href: "#menu-highlights",
|
||||
},
|
||||
text: "See the Menu", href: "#menu-highlights"},
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "https://www.google.com/maps/dir/?api=1&destination=7157+Willow+Springs+Rd,+Countryside,+IL+60525",
|
||||
},
|
||||
text: "Get Directions", href: "https://www.google.com/maps/dir/?api=1&destination=7157+Willow+Springs+Rd,+Countryside,+IL+60525"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/pints-draught-beer-macro-photography_53876-18222.jpg"
|
||||
imageAlt="The Mood Bar & Grill Interior"
|
||||
@@ -90,45 +73,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "gallery-1",
|
||||
name: "Bar Exterior",
|
||||
price: "",
|
||||
variant: "Our Welcoming Facade",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-traveling-trought-city_23-2149297296.jpg",
|
||||
imageAlt: "Exterior of The Mood Bar & Grill at night",
|
||||
},
|
||||
id: "gallery-1", name: "Bar Exterior", price: "", variant: "Our Welcoming Facade", imageSrc: "http://img.b2bpic.net/free-photo/person-traveling-trought-city_23-2149297296.jpg", imageAlt: "Exterior of The Mood Bar & Grill at night"},
|
||||
{
|
||||
id: "gallery-2",
|
||||
name: "Bar Interior",
|
||||
price: "",
|
||||
variant: "Cozy, Authentic Ambiance",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-wooden-table_417767-153.jpg",
|
||||
imageAlt: "Interior of The Mood Bar & Grill with dark wood and amber lighting",
|
||||
},
|
||||
id: "gallery-2", name: "Bar Interior", price: "", variant: "Cozy, Authentic Ambiance", imageSrc: "http://img.b2bpic.net/free-photo/black-wooden-table_417767-153.jpg", imageAlt: "Interior of The Mood Bar & Grill with dark wood and amber lighting"},
|
||||
{
|
||||
id: "gallery-3",
|
||||
name: "Moody Wings",
|
||||
price: "",
|
||||
variant: "Countryside's Best Wings",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/buffalo-spicy-chicken-wings-with-cayenne-pepper-sauce-isolated-white-background_123827-29084.jpg",
|
||||
imageAlt: "Plate of crispy Moody Wings",
|
||||
},
|
||||
id: "gallery-3", name: "Moody Wings", price: "", variant: "Countryside's Best Wings", imageSrc: "http://img.b2bpic.net/free-photo/buffalo-spicy-chicken-wings-with-cayenne-pepper-sauce-isolated-white-background_123827-29084.jpg", imageAlt: "Plate of crispy Moody Wings"},
|
||||
{
|
||||
id: "gallery-4",
|
||||
name: "Cold Drinks",
|
||||
price: "",
|
||||
variant: "Perfect Pours",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-barista-holding-glass-draft-beer-while-working-bar-counter_637285-3371.jpg",
|
||||
imageAlt: "Various drinks on the bar counter",
|
||||
},
|
||||
id: "gallery-4", name: "Cold Drinks", price: "", variant: "Perfect Pours", imageSrc: "http://img.b2bpic.net/free-photo/happy-barista-holding-glass-draft-beer-while-working-bar-counter_637285-3371.jpg", imageAlt: "Various drinks on the bar counter"},
|
||||
{
|
||||
id: "gallery-5",
|
||||
name: "Dog-Friendly Patio",
|
||||
price: "",
|
||||
variant: "Relax Outdoors",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-table-chair_74190-2101.jpg",
|
||||
imageAlt: "Outdoor patio area of The Mood Bar & Grill",
|
||||
},
|
||||
id: "gallery-5", name: "Dog-Friendly Patio", price: "", variant: "Relax Outdoors", imageSrc: "http://img.b2bpic.net/free-photo/empty-table-chair_74190-2101.jpg", imageAlt: "Outdoor patio area of The Mood Bar & Grill"},
|
||||
]}
|
||||
title="Our Vibe & Bites"
|
||||
description="A glimpse into Countryside's favorite gathering spot, capturing the gritty charm and delicious offerings that make The Mood special."
|
||||
@@ -150,53 +103,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "menu-item-1",
|
||||
name: "Moody Wings",
|
||||
price: "from $6",
|
||||
variant: "Breading-free, crispy, best in Countryside!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-chicken-wings-with-greens-tomatoes-light-surface_140725-154937.jpg",
|
||||
imageAlt: "Plate of crispy Moody Wings",
|
||||
},
|
||||
id: "menu-item-1", name: "Moody Wings", price: "from $6", variant: "Breading-free, crispy, best in Countryside!", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-chicken-wings-with-greens-tomatoes-light-surface_140725-154937.jpg", imageAlt: "Plate of crispy Moody Wings"},
|
||||
{
|
||||
id: "menu-item-2",
|
||||
name: "Bacon Cheeseburger / Juicy Lucy",
|
||||
price: "$12–$15",
|
||||
variant: "Classic, cheesy, and satisfying.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/preparation-delicious-burger-arrangement_23-2148868250.jpg",
|
||||
imageAlt: "A juicy bacon cheeseburger",
|
||||
},
|
||||
id: "menu-item-2", name: "Bacon Cheeseburger / Juicy Lucy", price: "$12–$15", variant: "Classic, cheesy, and satisfying.", imageSrc: "http://img.b2bpic.net/free-photo/preparation-delicious-burger-arrangement_23-2148868250.jpg", imageAlt: "A juicy bacon cheeseburger"},
|
||||
{
|
||||
id: "menu-item-3",
|
||||
name: "Chili Burger Daily Special",
|
||||
price: "Market Price",
|
||||
variant: "A rotating special you won't want to miss.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-cheeseburger_23-2151985508.jpg",
|
||||
imageAlt: "Chili burger with cheese",
|
||||
},
|
||||
id: "menu-item-3", name: "Chili Burger Daily Special", price: "Market Price", variant: "A rotating special you won't want to miss.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-cheeseburger_23-2151985508.jpg", imageAlt: "Chili burger with cheese"},
|
||||
{
|
||||
id: "menu-item-4",
|
||||
name: "Meatlover’s Omelette",
|
||||
price: "$14.99",
|
||||
variant: "Packed with your favorite meats, all day long.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast-consisting-bread-fried-eggs-tomatoes-chinese-sausage-mushrooms_1150-22702.jpg",
|
||||
imageAlt: "A large meatlover's omelette",
|
||||
},
|
||||
id: "menu-item-4", name: "Meatlover’s Omelette", price: "$14.99", variant: "Packed with your favorite meats, all day long.", imageSrc: "http://img.b2bpic.net/free-photo/breakfast-consisting-bread-fried-eggs-tomatoes-chinese-sausage-mushrooms_1150-22702.jpg", imageAlt: "A large meatlover's omelette"},
|
||||
{
|
||||
id: "menu-item-5",
|
||||
name: "Draft Beers + Free Popcorn",
|
||||
price: "from $4",
|
||||
variant: "Ice-cold selections to quench your thirst.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/yellow-close-up-drink-alcohol-outdoors_1122-2418.jpg",
|
||||
imageAlt: "A cold draft beer with a bowl of popcorn",
|
||||
},
|
||||
id: "menu-item-5", name: "Draft Beers + Free Popcorn", price: "from $4", variant: "Ice-cold selections to quench your thirst.", imageSrc: "http://img.b2bpic.net/free-photo/yellow-close-up-drink-alcohol-outdoors_1122-2418.jpg", imageAlt: "A cold draft beer with a bowl of popcorn"},
|
||||
{
|
||||
id: "menu-item-6",
|
||||
name: "Seasonal Pig Roast Events",
|
||||
price: "Varies",
|
||||
variant: "Join us for our legendary community roasts!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/meat-cutting-with-olives-slices-orange_140725-983.jpg",
|
||||
imageAlt: "A roasted pig at an outdoor event",
|
||||
},
|
||||
id: "menu-item-6", name: "Seasonal Pig Roast Events", price: "Varies", variant: "Join us for our legendary community roasts!", imageSrc: "http://img.b2bpic.net/free-photo/meat-cutting-with-olives-slices-orange_140725-983.jpg", imageAlt: "A roasted pig at an outdoor event"},
|
||||
]}
|
||||
title="Signature Bites & Brews"
|
||||
description="From our legendary Moody Wings to hearty burgers and seasonal events, there's always something delicious to discover on The Mood's menu."
|
||||
@@ -208,65 +125,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Yelp Reviewer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-cheerful-africanamerican-female-model-showing-okay-sign-winking-looking-satisfied-rec_1258-129397.jpg",
|
||||
imageAlt: "Reviewer avatar",
|
||||
role: "Customer",
|
||||
company: "Yelp",
|
||||
rating: 5,
|
||||
quote: "Best chicken wings I’ve ever had. No breading, crispy, hot. We ate at a 3-star Michelin restaurant the night before — this hit different.",
|
||||
id: "1", name: "Yelp Reviewer", imageSrc: "http://img.b2bpic.net/free-photo/closeup-cheerful-africanamerican-female-model-showing-okay-sign-winking-looking-satisfied-rec_1258-129397.jpg", imageAlt: "Reviewer avatar"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Restaurantji Reviewer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adults-having-party-home_23-2149215876.jpg",
|
||||
imageAlt: "Reviewer avatar",
|
||||
role: "Customer",
|
||||
company: "Restaurantji",
|
||||
rating: 5,
|
||||
quote: "First time there. Everything exceeded our expectations. The food was phenomenal and Jen was amazing!",
|
||||
id: "2", name: "Restaurantji Reviewer", imageSrc: "http://img.b2bpic.net/free-photo/young-adults-having-party-home_23-2149215876.jpg", imageAlt: "Reviewer avatar"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Facebook User",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-surprising-his-friend-holding-her-hands-restaurant_23-2149316777.jpg",
|
||||
imageAlt: "Reviewer avatar",
|
||||
role: "Customer",
|
||||
company: "Facebook",
|
||||
rating: 5,
|
||||
quote: "Friendly people, cold beer! The kind of bar where you walk in as a stranger and leave feeling like a regular.",
|
||||
id: "3", name: "Facebook User", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-surprising-his-friend-holding-her-hands-restaurant_23-2149316777.jpg", imageAlt: "Reviewer avatar"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Local Patron",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-holding-glass-drink-mobile-phone-looking-away_23-2147861928.jpg",
|
||||
imageAlt: "Reviewer avatar",
|
||||
role: "Customer",
|
||||
company: "Google Reviews",
|
||||
rating: 5,
|
||||
quote: "Always a great time at The Mood. The staff is fantastic, and the atmosphere is exactly what you want in a neighborhood bar.",
|
||||
id: "4", name: "Local Patron", imageSrc: "http://img.b2bpic.net/free-photo/young-man-holding-glass-drink-mobile-phone-looking-away_23-2147861928.jpg", imageAlt: "Reviewer avatar"
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Area Resident",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-good-time_23-2148395332.jpg",
|
||||
imageAlt: "Reviewer avatar",
|
||||
role: "Customer",
|
||||
company: "Yelp",
|
||||
rating: 5,
|
||||
quote: "Love this place! The Moody Wings are truly legendary, and the beer is always cold. A perfect spot to unwind.",
|
||||
id: "5", name: "Area Resident", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-good-time_23-2148395332.jpg", imageAlt: "Reviewer avatar"
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Community Member",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-fan-with-funny-glasses_329181-18600.jpg",
|
||||
imageAlt: "Reviewer avatar",
|
||||
role: "Customer",
|
||||
company: "Facebook",
|
||||
rating: 5,
|
||||
quote: "The Mood feels like home. Great people, great food, and a fantastic dog-friendly patio. Couldn't ask for more!",
|
||||
},
|
||||
id: "6", name: "Community Member", imageSrc: "http://img.b2bpic.net/free-photo/football-fan-with-funny-glasses_329181-18600.jpg", imageAlt: "Reviewer avatar"
|
||||
}
|
||||
]}
|
||||
cardTitle="What Our Regulars Say"
|
||||
cardTag="Authentic Feedback"
|
||||
@@ -279,10 +154,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "hours-1",
|
||||
title: "When can you find us?",
|
||||
content: "Monday – Wednesday: 10AM – 12AM\nThursday – Friday: 10AM – 2AM\nSaturday: 10:30AM – 2AM\nSunday: 10AM – 10PM",
|
||||
},
|
||||
id: "hours-1", title: "When can you find us?", content: "Monday – Wednesday: 10AM – 12AM\nThursday – Friday: 10AM – 2AM\nSaturday: 10:30AM – 2AM\nSunday: 10AM – 10PM"},
|
||||
]}
|
||||
sideTitle="Our Hours"
|
||||
sideDescription="Join us almost any day of the week for food, drinks, and good company."
|
||||
@@ -296,20 +168,15 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Get in Touch"
|
||||
title="Visit The Mood Bar & Grill"
|
||||
description="We're located at 7157 Willow Springs Rd, Countryside, IL 60525 (Chicago area). \\\nPhone: (708) 354-1410 \\\nEmail: Themoodbar@yahoo.com \\\nDog-friendly patio (leash required), free on-site parking. Come on down!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "https://www.google.com/maps/dir/?api=1&destination=7157+Willow+Springs+Rd,+Countryside,+IL+60525",
|
||||
},
|
||||
text: "Get Directions", href: "https://www.google.com/maps/dir/?api=1&destination=7157+Willow+Springs+Rd,+Countryside,+IL+60525"},
|
||||
{
|
||||
text: "Email Us",
|
||||
href: "mailto:Themoodbar@yahoo.com",
|
||||
},
|
||||
text: "Email Us", href: "mailto:Themoodbar@yahoo.com"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -320,9 +187,7 @@ export default function LandingPage() {
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "https://www.facebook.com/p/The-Mood-100042713359121",
|
||||
},
|
||||
label: "Facebook", href: "https://www.facebook.com/p/The-Mood-100042713359121"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user