Merge version_1 into main #1
@@ -67,28 +67,28 @@ export default function AboutPage() {
|
||||
id: "1",
|
||||
name: "The Bartender",
|
||||
role: "Heart of the Bar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bartender-working-club_23-2151285779.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bartender-working-club_23-2151285779.jpg?_wi=2",
|
||||
imageAlt: "professional bartender portrait",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "The Regulars",
|
||||
role: "The Soul of the Community",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-friends-holding-glasses-drinks-nightclub_23-2147859520.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-friends-holding-glasses-drinks-nightclub_23-2147859520.jpg?_wi=2",
|
||||
imageAlt: "group friends bar table",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "The Veterans",
|
||||
role: "Our Honored Members",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-people-cheering-arms-raised-joy-generated-by-ai_188544-39282.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-people-cheering-arms-raised-joy-generated-by-ai_188544-39282.jpg?_wi=2",
|
||||
imageAlt: "military veterans reunion",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "The Steelers Nation",
|
||||
role: "Game Day Legends",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/we-are-sure-that-german-team-will-win-this-championship_329181-9962.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/we-are-sure-that-german-team-will-win-this-championship_329181-9962.jpg?_wi=2",
|
||||
imageAlt: "sports fans game day",
|
||||
},
|
||||
]}
|
||||
@@ -109,7 +109,7 @@ export default function AboutPage() {
|
||||
name: "Sarah Johnson",
|
||||
role: "Visitor",
|
||||
testimonial: "I walked in alone and was treated like family immediately. Everyone made me feel welcome. This is what a true dive bar should be!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-portrait-magnificent-young-sensual-model-with-long-brown-hairs-shy-cute-smile-natural-pure-beauty-soft-make-up_291049-1735.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-portrait-magnificent-young-sensual-model-with-long-brown-hairs-shy-cute-smile-natural-pure-beauty-soft-make-up_291049-1735.jpg?_wi=3",
|
||||
imageAlt: "happy woman bar portrait",
|
||||
},
|
||||
{
|
||||
@@ -117,7 +117,7 @@ export default function AboutPage() {
|
||||
name: "Michael Chen",
|
||||
role: "Regular",
|
||||
testimonial: "Best place in town for Steelers games. The atmosphere is electric, drinks are cheap, and the people are genuine.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-with-thumbs-up_23-2149008927.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-with-thumbs-up_23-2149008927.jpg?_wi=3",
|
||||
imageAlt: "happy man portrait bar",
|
||||
},
|
||||
{
|
||||
@@ -125,7 +125,7 @@ export default function AboutPage() {
|
||||
name: "Emily Rodriguez",
|
||||
role: "Marine Veteran",
|
||||
testimonial: "A sanctuary for active and retired Marines. The camaraderie here is unmatched. It's more than a bar, it's a brotherhood.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-office-employers-thumbing-up-smiling-two-happy-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-cooperation-concept_74855-6924.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-office-employers-thumbing-up-smiling-two-happy-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-cooperation-concept_74855-6924.jpg?_wi=3",
|
||||
imageAlt: "military veteran portrait",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,50 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Mulish } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Dukenfields Tavern - Local Dive Bar & Sports Haven",
|
||||
description: "Your favorite local dive bar. Cold drinks, great games, warm hospitality, and a community of regulars and Marines. Visit Dukenfields Tavern today.",
|
||||
keywords: "dive bar, sports bar, Steelers bar, local tavern, pool and darts, marine bar",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Dukenfields Tavern - Where Community Gathers",
|
||||
description: "A true diamond in the rough. Your local sports bar, dive bar experience with cold drinks, games, and genuine hospitality.",
|
||||
type: "website",
|
||||
siteName: "Dukenfields Tavern",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/friends-sitting-cafe-using-mobile-phones_171337-19757.jpg",
|
||||
alt: "Dukenfields Tavern",
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +53,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +67,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -74,42 +74,42 @@ export default function MenuPage() {
|
||||
id: 1,
|
||||
title: "Cold Beer Selection",
|
||||
description: "Domestic and craft beers on tap and in bottles. Your favorite brands at dive bar prices.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sparkling-water-with-lemon-mint_140725-1867.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sparkling-water-with-lemon-mint_140725-1867.jpg?_wi=2",
|
||||
imageAlt: "Cold beer selection",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Classic Cocktails",
|
||||
description: "Time-tested drink recipes made with quality ingredients by our skilled bartenders.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-three-joyful-guys_329181-20415.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-three-joyful-guys_329181-20415.jpg?_wi=2",
|
||||
imageAlt: "Classic cocktails",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Specialty Shots",
|
||||
description: "Bold, fun shots to get the party started. Perfect for game day celebrations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-men-spending-weekend-pub_329181-18358.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-men-spending-weekend-pub_329181-18358.jpg?_wi=2",
|
||||
imageAlt: "Specialty shots",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Well Drinks",
|
||||
description: "Our house specials mixed with premium ingredients at unbeatable prices.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-young-woman-sitting-near-bar-counter-holding-cocktail_23-2147859642.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-young-woman-sitting-near-bar-counter-holding-cocktail_23-2147859642.jpg?_wi=2",
|
||||
imageAlt: "Well drinks",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Non-Alcoholic Options",
|
||||
description: "Soft drinks, sodas, and water to keep everyone refreshed and hydrated.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/summer-barbecue-night_23-2147643500.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/summer-barbecue-night_23-2147643500.jpg?_wi=2",
|
||||
imageAlt: "Non-alcoholic beverages",
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: "Happy Hour Specials",
|
||||
description: "Unbeatable prices during select hours. Ask our bartenders about today's specials.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/realistic-horizontal-banner-template-us-veterans-day-holiday_23-2150851722.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/realistic-horizontal-banner-template-us-veterans-day-holiday_23-2150851722.jpg?_wi=2",
|
||||
imageAlt: "Happy hour specials",
|
||||
},
|
||||
]}
|
||||
@@ -130,42 +130,42 @@ export default function MenuPage() {
|
||||
id: 1,
|
||||
title: "Classic Burgers",
|
||||
description: "Juicy, made-to-order burgers with fresh toppings. Perfect game-day meal.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bartender-working-club_23-2151285779.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bartender-working-club_23-2151285779.jpg?_wi=1",
|
||||
imageAlt: "Classic burgers",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Wings & Strips",
|
||||
description: "Crispy fried chicken wings and tenders with your choice of spicy or mild sauces.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-friends-holding-glasses-drinks-nightclub_23-2147859520.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-friends-holding-glasses-drinks-nightclub_23-2147859520.jpg?_wi=1",
|
||||
imageAlt: "Wings and strips",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Nachos & Appetizers",
|
||||
description: "Loaded nachos, mozzarella sticks, and fried pickles for sharing with friends.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-people-cheering-arms-raised-joy-generated-by-ai_188544-39282.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-people-cheering-arms-raised-joy-generated-by-ai_188544-39282.jpg?_wi=1",
|
||||
imageAlt: "Nachos and appetizers",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Hot Dogs & Sausages",
|
||||
description: "All-beef franks and specialty sausages grilled fresh to order.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/we-are-sure-that-german-team-will-win-this-championship_329181-9962.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/we-are-sure-that-german-team-will-win-this-championship_329181-9962.jpg?_wi=1",
|
||||
imageAlt: "Hot dogs and sausages",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Sandwiches",
|
||||
description: "Hearty sandwiches with quality meats and fresh ingredients to fill you up.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-playing-game-table_23-2149066106.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-playing-game-table_23-2149066106.jpg?_wi=2",
|
||||
imageAlt: "Sandwiches",
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: "Bar Snacks",
|
||||
description: "Peanuts, pretzels, chips, and other munchies to enjoy while you play.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-guys-watching-american-football-competition_329181-18314.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-guys-watching-american-football-competition_329181-18314.jpg?_wi=2",
|
||||
imageAlt: "Bar snacks",
|
||||
},
|
||||
]}
|
||||
@@ -186,42 +186,42 @@ export default function MenuPage() {
|
||||
id: 1,
|
||||
title: "Monday Night Football Specials",
|
||||
description: "Half-price wings and discounted beer during all Monday games.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/silhouette-group-people-have-fun-top-mountain-near-tent-sunset_146671-18468.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/silhouette-group-people-have-fun-top-mountain-near-tent-sunset_146671-18468.jpg?_wi=2",
|
||||
imageAlt: "Monday specials",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Trivia Night Prizes",
|
||||
description: "Free appetizers for trivia winners. Play for bragging rights and food.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-portrait-magnificent-young-sensual-model-with-long-brown-hairs-shy-cute-smile-natural-pure-beauty-soft-make-up_291049-1735.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-portrait-magnificent-young-sensual-model-with-long-brown-hairs-shy-cute-smile-natural-pure-beauty-soft-make-up_291049-1735.jpg?_wi=2",
|
||||
imageAlt: "Trivia night",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Steelers Game Day Deals",
|
||||
description: "$1 off wings and discounted draft beer when the Steelers play.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-with-thumbs-up_23-2149008927.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-with-thumbs-up_23-2149008927.jpg?_wi=2",
|
||||
imageAlt: "Steelers game day deals",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Military Appreciation Discount",
|
||||
description: "15% off for active and retired military members with valid ID.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-office-employers-thumbing-up-smiling-two-happy-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-cooperation-concept_74855-6924.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-office-employers-thumbing-up-smiling-two-happy-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-cooperation-concept_74855-6924.jpg?_wi=2",
|
||||
imageAlt: "Military discount",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Pool Tournament Prizes",
|
||||
description: "Enter our regular pool tournaments for cash prizes and glory.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-posing-with-denim-shirt-sitting-chair_329181-3695.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-posing-with-denim-shirt-sitting-chair_329181-3695.jpg?_wi=2",
|
||||
imageAlt: "Pool tournament",
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: "Seasonal Favorites",
|
||||
description: "Rotating menu items featuring seasonal ingredients and themes.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-double-thumbs-up-shirt-shorts-looking-confident-front-view_176474-53811.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-double-thumbs-up-shirt-shorts-looking-confident-front-view_176474-53811.jpg?_wi=2",
|
||||
imageAlt: "Seasonal favorites",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -61,7 +61,7 @@ export default function HomePage() {
|
||||
handle: "Sports Enthusiast",
|
||||
testimonial: "Walked in by myself and was immediately welcomed like family. Best dive bar experience ever!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-playing-game-table_23-2149066106.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-playing-game-table_23-2149066106.jpg?_wi=1",
|
||||
imageAlt: "friendly bartender warm smile",
|
||||
},
|
||||
{
|
||||
@@ -69,7 +69,7 @@ export default function HomePage() {
|
||||
handle: "Steelers Nation",
|
||||
testimonial: "The perfect spot to catch the game with people who care. Cheap drinks, great atmosphere, genuine community.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-guys-watching-american-football-competition_329181-18314.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-guys-watching-american-football-competition_329181-18314.jpg?_wi=1",
|
||||
imageAlt: "sports bar Steelers fan",
|
||||
},
|
||||
{
|
||||
@@ -77,7 +77,7 @@ export default function HomePage() {
|
||||
handle: "Active & Retired",
|
||||
testimonial: "Where active and retired Marines let loose. Feels like home. That's what this place is all about.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/silhouette-group-people-have-fun-top-mountain-near-tent-sunset_146671-18468.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/silhouette-group-people-have-fun-top-mountain-near-tent-sunset_146671-18468.jpg?_wi=1",
|
||||
imageAlt: "military veterans gathering",
|
||||
},
|
||||
]}
|
||||
@@ -99,42 +99,42 @@ export default function HomePage() {
|
||||
id: 1,
|
||||
title: "Steelers Headquarters",
|
||||
description: "The ultimate destination for Steelers fans. Catch every game on our screens with the most passionate crowd in town.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-three-joyful-guys_329181-20415.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-three-joyful-guys_329181-20415.jpg?_wi=1",
|
||||
imageAlt: "sports bar Steelers memorabilia",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Entertainment & Games",
|
||||
description: "Pool tables, darts, and video trivia keep the energy high. Classic games for everyone to enjoy.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-men-spending-weekend-pub_329181-18358.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-men-spending-weekend-pub_329181-18358.jpg?_wi=1",
|
||||
imageAlt: "pool table darts game room",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Warm Hospitality",
|
||||
description: "Walk in as a stranger, leave as family. Our bartenders and regulars create an welcoming environment for all.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-young-woman-sitting-near-bar-counter-holding-cocktail_23-2147859642.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-young-woman-sitting-near-bar-counter-holding-cocktail_23-2147859642.jpg?_wi=1",
|
||||
imageAlt: "cozy warm bar ambiance",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Affordable Drinks",
|
||||
description: "Great prices on all your favorite beverages. Dive bar quality without breaking the bank.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sparkling-water-with-lemon-mint_140725-1867.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sparkling-water-with-lemon-mint_140725-1867.jpg?_wi=1",
|
||||
imageAlt: "affordable beer special drinks",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Outdoor Smoking Area",
|
||||
description: "Comfortable outdoor space with heat lamps for year-round smoking and fresh air enjoyment.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/summer-barbecue-night_23-2147643500.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/summer-barbecue-night_23-2147643500.jpg?_wi=1",
|
||||
imageAlt: "outdoor bar patio heat lamp",
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: "Local Community Hub",
|
||||
description: "Active and retired Marines gather here to connect, relax, and be part of something bigger.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/realistic-horizontal-banner-template-us-veterans-day-holiday_23-2150851722.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/realistic-horizontal-banner-template-us-veterans-day-holiday_23-2150851722.jpg?_wi=1",
|
||||
imageAlt: "military community gathering",
|
||||
},
|
||||
]}
|
||||
@@ -156,7 +156,7 @@ export default function HomePage() {
|
||||
name: "Sarah Johnson",
|
||||
role: "Visitor",
|
||||
testimonial: "I walked in alone and was treated like family immediately. Everyone made me feel welcome. This is what a true dive bar should be!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-portrait-magnificent-young-sensual-model-with-long-brown-hairs-shy-cute-smile-natural-pure-beauty-soft-make-up_291049-1735.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-portrait-magnificent-young-sensual-model-with-long-brown-hairs-shy-cute-smile-natural-pure-beauty-soft-make-up_291049-1735.jpg?_wi=1",
|
||||
imageAlt: "happy woman bar portrait",
|
||||
},
|
||||
{
|
||||
@@ -164,7 +164,7 @@ export default function HomePage() {
|
||||
name: "Michael Chen",
|
||||
role: "Regular",
|
||||
testimonial: "Best place in town for Steelers games. The atmosphere is electric, drinks are cheap, and the people are genuine.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-with-thumbs-up_23-2149008927.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-with-thumbs-up_23-2149008927.jpg?_wi=1",
|
||||
imageAlt: "happy man portrait bar",
|
||||
},
|
||||
{
|
||||
@@ -172,7 +172,7 @@ export default function HomePage() {
|
||||
name: "Emily Rodriguez",
|
||||
role: "Marine Veteran",
|
||||
testimonial: "A sanctuary for active and retired Marines. The camaraderie here is unmatched. It's more than a bar, it's a brotherhood.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-office-employers-thumbing-up-smiling-two-happy-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-cooperation-concept_74855-6924.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-office-employers-thumbing-up-smiling-two-happy-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-cooperation-concept_74855-6924.jpg?_wi=1",
|
||||
imageAlt: "military veteran portrait",
|
||||
},
|
||||
{
|
||||
@@ -180,7 +180,7 @@ export default function HomePage() {
|
||||
name: "David Kim",
|
||||
role: "Local",
|
||||
testimonial: "Pool, darts, trivia, cold beer, and amazing people. Everything a good dive bar should have. Can't ask for better.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-posing-with-denim-shirt-sitting-chair_329181-3695.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-posing-with-denim-shirt-sitting-chair_329181-3695.jpg?_wi=1",
|
||||
imageAlt: "smiling man portrait casual",
|
||||
},
|
||||
{
|
||||
@@ -188,7 +188,7 @@ export default function HomePage() {
|
||||
name: "Jessica Martinez",
|
||||
role: "Frequent Guest",
|
||||
testimonial: "The outdoor area with heat lamps is perfect for a smoke and conversation. Year-round comfort and good company.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-double-thumbs-up-shirt-shorts-looking-confident-front-view_176474-53811.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-double-thumbs-up-shirt-shorts-looking-confident-front-view_176474-53811.jpg?_wi=1",
|
||||
imageAlt: "woman outdoor portrait happy",
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user