Files
1c1d50fd-71a0-450e-9be8-fa6…/src/app/events/page.tsx
2026-03-09 01:22:42 +00:00

187 lines
7.6 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Music, Trophy, Fish, Clock, MapPin } from "lucide-react";
export default function EventsPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="small"
sizing="mediumLargeSizeMediumTitles"
background="noiseDiagonalGradient"
cardStyle="outline"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Blue Collar"
navItems={[
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "Events", id: "events" },
{ name: "Reviews", id: "reviews" },
]}
button={{
text: "Get Directions",
href: "contact",
}}
animateOnLoad={true}
/>
</div>
<div id="events-overview" data-section="events-overview">
<MetricCardThree
title="Weekly Events & Entertainment"
description="Blue Collar isn't just a place to eat and drink—it's where Manchester gathers for good times. From live music to game-day crowds, we bring energy and entertainment every week."
animationType="slide-up"
metrics={[
{ id: "1", icon: Music, title: "Live Music Nights", value: "Fridays & Saturdays" },
{ id: "2", icon: Trophy, title: "Game-Day Atmosphere", value: "Sundays & Holidays" },
{ id: "3", icon: Fish, title: "Friday Fish Fry", value: "6-10pm" },
{ id: "4", icon: Clock, title: "Happy Hour", value: "4-6pm Weekdays" },
]}
textboxLayout="default"
useInvertedBackground={true}
/>
</div>
<div id="events-showcase" data-section="events-showcase">
<ProductCardTwo
title="Experience Blue Collar Events"
description="Every event at Blue Collar is about bringing people together for great food, cold drinks, and unforgettable moments."
animationType="scale-rotate"
gridVariant="three-columns-all-equal-width"
textboxLayout="default"
useInvertedBackground={false}
products={[
{
id: "1",
brand: "Live Entertainment",
name: "Friday Night Live Music",
price: "No Cover Charge",
rating: 5,
reviewCount: "500+",
imageSrc: "http://img.b2bpic.net/free-photo/magic-look-handsome-young-man-black-clothes-sitting-chair-near-dark-room-with-light_146671-19721.jpg?_wi=2",
imageAlt: "Live band performing at Blue Collar Sports Bar",
},
{
id: "2",
brand: "Game Day",
name: "Iowa Football Sundays",
price: "Game Day Specials",
rating: 5,
reviewCount: "450+",
imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-night-out-together_23-2149173623.jpg?_wi=2",
imageAlt: "Excited crowd watching football game at sports bar",
},
{
id: "3",
brand: "Weekly Special",
name: "Friday Fish Fry",
price: "Starting at $16",
rating: 5,
reviewCount: "380+",
imageSrc: "http://img.b2bpic.net/free-photo/healthy-breakfast-with-vegetables_23-2148169168.jpg?_wi=2",
imageAlt: "Fresh crispy fish fry special plate",
},
]}
/>
</div>
<div id="event-info" data-section="event-info">
<ContactFaq
ctaTitle="Plan Your Event With Us"
ctaDescription="Whether it's a casual game-day gathering, a celebration, or a team event, Blue Collar is the perfect place. Let us help make it memorable."
ctaIcon={MapPin}
ctaButton={{ text: "Book an Event", href: "/contact" }}
faqs={[
{
id: "1",
title: "Do you host private events?",
content:
"Absolutely! We love hosting private parties, team celebrations, and group gatherings. We can accommodate groups of any size with advance notice. Contact us for availability and pricing.",
},
{
id: "2",
title: "What's the live music schedule?",
content:
"We feature live music most Friday and Saturday nights, typically starting at 8pm. Genres vary from rock and blues to country and acoustic. Check our Facebook for this week's performer.",
},
{
id: "3",
title: "Do you have game-day specials?",
content:
"Yes! On Sundays during football season and on game days for major tournaments, we run specials on wings, appetizers, and drinks. It's the perfect place to watch with friends.",
},
{
id: "4",
title: "Can we reserve tables for big groups?",
content:
"For groups of 8 or more, we recommend calling ahead to reserve space. We want to make sure we can take great care of you and your group.",
},
{
id: "5",
title: "What's your happy hour?",
content:
"Happy hour runs 4-6pm Monday through Friday. Discounted drinks, appetizer specials, and a chance to unwind after work with friends and neighbors.",
},
{
id: "6",
title: "Do you host trivia or tournaments?",
content:
"We regularly host pool and darts tournaments, and we're always open to feedback about events you'd like to see. Reach out with ideas!",
},
]}
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Blue Collar Sports Bar"
copyrightText="© 2025 Blue Collar Sports Bar. Good Food. Cold Beer. Hometown Grit."
columns={[
{
title: "Navigation",
items: [
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
{ label: "About", href: "/about" },
{ label: "Events", href: "/events" },
],
},
{
title: "Connect",
items: [
{ label: "Contact Us", href: "/contact" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Reviews", href: "#testimonials" },
{ label: "Book a Group", href: "/contact" },
],
},
{
title: "Legal",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Accessibility", href: "#" },
],
},
]}
/>
</div>
</ThemeProvider>
);
}