Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #3.
This commit is contained in:
221
src/app/page.tsx
221
src/app/page.tsx
@@ -30,30 +30,18 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
},
|
||||
name: "Home", id: "home"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
name: "Menu", id: "menu"},
|
||||
{
|
||||
name: "Events",
|
||||
id: "events",
|
||||
},
|
||||
name: "Events", id: "events"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
button={{
|
||||
text: "Book a Table",
|
||||
href: "/contact",
|
||||
}}
|
||||
text: "Book a Table", href: "/contact"}}
|
||||
brandName="The Ballymac Inn"
|
||||
/>
|
||||
</div>
|
||||
@@ -61,19 +49,14 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
logoText="The Ballymac Inn"
|
||||
description="Authentic Irish hospitality since 1980. Your home for great food, fine drinks, and good craic in Ballymagauran, Co. Cavan."
|
||||
description="Authentic Irish hospitality since 1980. Your home for great food, fine drinks, and good craic in Ballymagauran, Co. Cavan. We welcome all guests and can assist with event planning, ensuring a memorable visit for everyone."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Our Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
text: "View Our Menu", href: "/menu"},
|
||||
{
|
||||
text: "Book a Table",
|
||||
href: "/contact",
|
||||
},
|
||||
text: "Book a Table", href: "/contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/pretty-indian-girl-black-saree-dress-posed-restaurant-with-orange-juice-hand_627829-2003.jpg?_wi=1"
|
||||
imageAlt="Cozy interior of The Ballymac Inn pub and restaurant"
|
||||
@@ -84,8 +67,8 @@ export default function LandingPage() {
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
useInvertedBackground={true}
|
||||
tag="Our Story"
|
||||
title="Experience the Heart of Ballymagauran"
|
||||
tag="Our Commitment"
|
||||
title="Experience the Heart of Ballymagauran: Welcoming All with Thoughtful Amenities, Event Planning, Easy Payments, Family-Friendly Facilities, and Convenient Parking."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -96,38 +79,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "food",
|
||||
title: "Delicious Food",
|
||||
tags: [
|
||||
"Traditional",
|
||||
"Local Produce",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/golden-beer-delicious-burgers-wooden-table-french-fries-green-salad-french-fries-garlic-sauce_482257-19717.jpg?_wi=1",
|
||||
imageAlt: "Plate of delicious Irish food",
|
||||
},
|
||||
id: "food", title: "Delicious Food", tags: [
|
||||
"Traditional", "Local Produce"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/golden-beer-delicious-burgers-wooden-table-french-fries-green-salad-french-fries-garlic-sauce_482257-19717.jpg?_wi=1", imageAlt: "Plate of delicious Irish food"},
|
||||
{
|
||||
id: "drinks",
|
||||
title: "Fine Drinks",
|
||||
tags: [
|
||||
"Craft Beer",
|
||||
"Whiskey",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shocked-young-woman-sitting-near-bar-counter-holding-drinks_23-2147859527.jpg?_wi=1",
|
||||
imageAlt: "Selection of drinks at a pub bar",
|
||||
},
|
||||
id: "drinks", title: "Fine Drinks", tags: [
|
||||
"Craft Beer", "Whiskey"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shocked-young-woman-sitting-near-bar-counter-holding-drinks_23-2147859527.jpg?_wi=1", imageAlt: "Selection of drinks at a pub bar"},
|
||||
{
|
||||
id: "music",
|
||||
title: "Lively Atmosphere",
|
||||
tags: [
|
||||
"Live Music",
|
||||
"Community",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/performer-songwriter-singing-new-tracks-his-electro-acoustic-guitar_482257-121942.jpg?_wi=1",
|
||||
imageAlt: "People enjoying live music in a pub",
|
||||
},
|
||||
id: "music", title: "Lively Atmosphere", tags: [
|
||||
"Live Music", "Community"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/performer-songwriter-singing-new-tracks-his-electro-acoustic-guitar_482257-121942.jpg?_wi=1", imageAlt: "People enjoying live music in a pub"},
|
||||
]}
|
||||
title="More Than Just a Pub: Great Food, Fine Drinks, Live Music"
|
||||
description="From hearty traditional dishes crafted with local ingredients to a wide selection of local craft beers and spirits, and regular live music sessions, we have something for everyone at The Ballymac Inn."
|
||||
description="From hearty traditional dishes crafted with local ingredients to a wide selection of local craft beers and spirits, and regular live music sessions, we have something for everyone, including family-friendly options, at The Ballymac Inn."
|
||||
tag="Our Offerings"
|
||||
/>
|
||||
</div>
|
||||
@@ -140,26 +105,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "irish-stew",
|
||||
name: "Hearty Irish Stew",
|
||||
price: "€16.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-plate-with-chicken-soup-black-background_140725-114589.jpg?_wi=1",
|
||||
imageAlt: "Traditional Irish stew",
|
||||
},
|
||||
id: "irish-stew", name: "Hearty Irish Stew", price: "€16.50", imageSrc: "http://img.b2bpic.net/free-photo/close-up-plate-with-chicken-soup-black-background_140725-114589.jpg?_wi=1", imageAlt: "Traditional Irish stew"},
|
||||
{
|
||||
id: "fish-chips",
|
||||
name: "Classic Fish & Chips",
|
||||
price: "€15.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheese-sticks-batter-with-sauce_140725-3219.jpg?_wi=1",
|
||||
imageAlt: "Classic fish and chips",
|
||||
},
|
||||
id: "fish-chips", name: "Classic Fish & Chips", price: "€15.00", imageSrc: "http://img.b2bpic.net/free-photo/cheese-sticks-batter-with-sauce_140725-3219.jpg?_wi=1", imageAlt: "Classic fish and chips"},
|
||||
{
|
||||
id: "sunday-roast",
|
||||
name: "Traditional Sunday Roast",
|
||||
price: "€18.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-meat-with-cherry-tomatoes-bread_23-2148167600.jpg?_wi=1",
|
||||
imageAlt: "Sunday roast dinner",
|
||||
},
|
||||
id: "sunday-roast", name: "Traditional Sunday Roast", price: "€18.00", imageSrc: "http://img.b2bpic.net/free-photo/grilled-meat-with-cherry-tomatoes-bread_23-2148167600.jpg?_wi=1", imageAlt: "Sunday roast dinner"},
|
||||
]}
|
||||
title="Taste the Best of Irish Cuisine"
|
||||
description="Discover our delightful range of traditional Irish dishes and contemporary classics, prepared with the freshest local ingredients. Perfect for a casual lunch or a special evening out."
|
||||
@@ -173,55 +123,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah O'Malley",
|
||||
date: "July 2024",
|
||||
title: "A True Taste of Ireland!",
|
||||
quote: "The Ballymac Inn is a gem! The food was incredible, especially the Irish stew, and the atmosphere was so welcoming. We felt right at home.",
|
||||
tag: "Food & Service",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/handsome-man-outdoors-portrait_158595-3529.jpg",
|
||||
avatarAlt: "Sarah O'Malley",
|
||||
},
|
||||
id: "1", name: "Sarah O'Malley", date: "July 2024", title: "A True Taste of Ireland!", quote: "The Ballymac Inn is a gem! The food was incredible, especially the Irish stew, and the atmosphere was so welcoming. We felt right at home.", tag: "Food & Service", avatarSrc: "http://img.b2bpic.net/free-photo/handsome-man-outdoors-portrait_158595-3529.jpg", avatarAlt: "Sarah O'Malley"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Liam Murphy",
|
||||
date: "June 2024",
|
||||
title: "Best Pint in Cavan!",
|
||||
quote: "Couldn't recommend this place enough! The pints are perfect, and the live music on weekends is fantastic. A must-visit if you're in the area.",
|
||||
tag: "Atmosphere",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-correcting-grammar-mistakes_23-2150171440.jpg",
|
||||
avatarAlt: "Liam Murphy",
|
||||
},
|
||||
id: "2", name: "Liam Murphy", date: "June 2024", title: "Best Pint in Cavan!", quote: "Couldn't recommend this place enough! The pints are perfect, and the live music on weekends is fantastic. A must-visit if you're in the area.", tag: "Atmosphere", avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-correcting-grammar-mistakes_23-2150171440.jpg", avatarAlt: "Liam Murphy"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Aoife Kelly",
|
||||
date: "May 2024",
|
||||
title: "Family Friendly and Delicious",
|
||||
quote: "We brought our kids here and everyone loved it. Great menu for all ages and the staff were so kind and attentive. A real family favourite!",
|
||||
tag: "Family Experience",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/expressive-senior-female-posing-indoor_344912-1305.jpg",
|
||||
avatarAlt: "Aoife Kelly",
|
||||
},
|
||||
id: "3", name: "Aoife Kelly", date: "May 2024", title: "Family Friendly and Delicious", quote: "We brought our kids here and everyone loved it. Great menu for all ages and the staff were so kind and attentive. A real family favourite!", tag: "Family Experience", avatarSrc: "http://img.b2bpic.net/free-photo/expressive-senior-female-posing-indoor_344912-1305.jpg", avatarAlt: "Aoife Kelly"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Sean Daly",
|
||||
date: "April 2024",
|
||||
title: "Authentic Irish Hospitality",
|
||||
quote: "From the moment we walked in, we were treated like old friends. The Ballymac Inn perfectly captures the spirit of Irish hospitality. We'll be back!",
|
||||
tag: "Hospitality",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-with-disposable-coffee-cup_107420-12313.jpg",
|
||||
avatarAlt: "Sean Daly",
|
||||
},
|
||||
id: "4", name: "Sean Daly", date: "April 2024", title: "Authentic Irish Hospitality", quote: "From the moment we walked in, we were treated like old friends. The Ballymac Inn perfectly captures the spirit of Irish hospitality. We'll be back!", tag: "Hospitality", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-with-disposable-coffee-cup_107420-12313.jpg", avatarAlt: "Sean Daly"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Emma & Conor Byrne",
|
||||
date: "March 2024",
|
||||
title: "Perfect Evening Out",
|
||||
quote: "Enjoyed a wonderful evening with delicious food and great company. The Ballymac Inn is our go-to spot for a relaxing night.",
|
||||
tag: "Date Night",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/front-view-woman-man-restaurant_23-2148395456.jpg",
|
||||
avatarAlt: "Emma and Conor Byrne",
|
||||
},
|
||||
id: "5", name: "Emma & Conor Byrne", date: "March 2024", title: "Perfect Evening Out", quote: "Enjoyed a wonderful evening with delicious food and great company. The Ballymac Inn is our go-to spot for a relaxing night.", tag: "Date Night", avatarSrc: "http://img.b2bpic.net/free-photo/front-view-woman-man-restaurant_23-2148395456.jpg", avatarAlt: "Emma and Conor Byrne"},
|
||||
]}
|
||||
title="Heartwarming Reviews from Our Community"
|
||||
description="Hear from visitors who've experienced the warmth, quality, and genuine hospitality that define The Ballymac Inn."
|
||||
@@ -233,11 +143,10 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Visit Us"
|
||||
title="Your Table Awaits"
|
||||
description="We look forward to welcoming you to The Ballymac Inn in Ballymagauran, Co. Cavan. Get in touch to make a reservation, inquire about private events, or simply say hello!"
|
||||
variant: "plain"}}
|
||||
tag="Contact & Visit Details"
|
||||
title="Your Table Awaits: Plan Your Perfect Visit"
|
||||
description="We look forward to welcoming you to The Ballymac Inn in Ballymagauran, Co. Cavan. Get in touch to make a reservation, inquire about private events, learn about our accessibility features, flexible payment options, children's facilities, or convenient parking. We're here to help you plan your perfect visit!"
|
||||
inputPlaceholder="Your Email Address"
|
||||
buttonText="Send Inquiry"
|
||||
termsText="By submitting this form, you agree to receive communications from The Ballymac Inn."
|
||||
@@ -248,71 +157,43 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "The Ballymac Inn",
|
||||
items: [
|
||||
title: "The Ballymac Inn", items: [
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "/about",
|
||||
},
|
||||
label: "Our Story", href: "/about"},
|
||||
{
|
||||
label: "Join Our Team",
|
||||
href: "#",
|
||||
},
|
||||
label: "Join Our Team", href: "#"},
|
||||
{
|
||||
label: "Press",
|
||||
href: "#",
|
||||
},
|
||||
label: "Press", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
title: "Menu", items: [
|
||||
{
|
||||
label: "Food Menu",
|
||||
href: "/menu#food",
|
||||
},
|
||||
label: "Food Menu", href: "/menu#food"},
|
||||
{
|
||||
label: "Drinks List",
|
||||
href: "/menu#drinks",
|
||||
},
|
||||
label: "Drinks List", href: "/menu#drinks"},
|
||||
{
|
||||
label: "Daily Specials",
|
||||
href: "/menu#specials",
|
||||
},
|
||||
label: "Daily Specials", href: "/menu#specials"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Visit",
|
||||
items: [
|
||||
title: "Visit", items: [
|
||||
{
|
||||
label: "Location",
|
||||
href: "/contact#location",
|
||||
},
|
||||
label: "Location", href: "/contact#location"},
|
||||
{
|
||||
label: "Opening Hours",
|
||||
href: "/contact#hours",
|
||||
},
|
||||
label: "Opening Hours", href: "/contact#hours"},
|
||||
{
|
||||
label: "Book a Table",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Book a Table", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
title: "Social", items: [
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "https://facebook.com/ballymacinn",
|
||||
},
|
||||
label: "Facebook", href: "https://facebook.com/ballymacinn"},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://instagram.com/ballymacinn",
|
||||
},
|
||||
label: "Instagram", href: "https://instagram.com/ballymacinn"},
|
||||
{
|
||||
label: "TripAdvisor",
|
||||
href: "https://tripadvisor.com",
|
||||
},
|
||||
label: "TripAdvisor", href: "https://tripadvisor.com"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -323,4 +204,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user