Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-16 06:04:53 +00:00
5 changed files with 68 additions and 31 deletions

View File

@@ -126,7 +126,7 @@ export default function ContactPage() {
description="Reserve your table, get directions, or call ahead. We're located in the heart of downtown Yerevan and ready to welcome you."
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/beautiful-architecture-building-seoul-city_74190-3344.jpg"
imageSrc="http://img.b2bpic.net/free-photo/beautiful-architecture-building-seoul-city_74190-3344.jpg?_wi=3"
imageAlt="Beatles Pub Yerevan location in downtown"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -135,7 +135,7 @@ export default function GalleryPage() {
title: "Main Interior & Stage",
description: "Our spacious main floor features intimate seating, a professional stage setup, and warm ambient lighting that creates the perfect atmosphere for live performances and memorable evenings.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/man-playing-electric-guitar-live-concert_23-2149188054.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-playing-electric-guitar-live-concert_23-2149188054.jpg?_wi=2",
imageAlt: "Beatles Pub main interior with stage and seating",
},
items: [
@@ -150,7 +150,7 @@ export default function GalleryPage() {
title: "Premium Bar Counter",
description: "Our extensive bar features a curated collection of over 300 whiskies, premium spirits, and craft beers. Each bottle is carefully selected to provide our guests with the finest selection in Yerevan.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-their-time-dj-party_23-2149658384.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-their-time-dj-party_23-2149658384.jpg?_wi=2",
imageAlt: "Premium whiskey and beer selection at the bar",
},
items: [
@@ -165,7 +165,7 @@ export default function GalleryPage() {
title: "Dining Experience",
description: "Our dining area offers comfortable seating with a view of the bar and stage. Whether you're enjoying our signature pork ribs or specialty cocktails, the ambiance is designed for unforgettable memories.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/delicious-steak-with-spicy-sauce_140725-951.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-steak-with-spicy-sauce_140725-951.jpg?_wi=3",
imageAlt: "Signature pork ribs dish",
},
items: [
@@ -194,7 +194,7 @@ export default function GalleryPage() {
title: "Live Rock Performances",
description: "Talented musicians bring classic rock to life every weekend. The combination of professional sound system and passionate performers creates an electrifying atmosphere.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-playing-guitar_23-2149223624.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-playing-guitar_23-2149223624.jpg?_wi=2",
imageAlt: "Live rock music performance",
},
items: [
@@ -209,7 +209,7 @@ export default function GalleryPage() {
title: "Signature Cocktails",
description: "Our expert mixologists craft unique cocktails inspired by rock culture. Each drink is a work of art designed to complement the energy of the evening.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/food-holiday-dinner-eating-hotel_1122-2017.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/food-holiday-dinner-eating-hotel_1122-2017.jpg?_wi=3",
imageAlt: "Craft cocktail mixed drink bar counter",
},
items: [

View File

@@ -1,24 +1,59 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 { Figtree } 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 figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Beatles Pub Yerevan - Premium Pub Experience, Top Rated 4.8★",
description: "Beatles Pub Yerevan iconic rock pub with 300+ whiskies, 20+ draught beers, signature ribs & live music. Reserve a table or call (010) 522-023. Located downtown, 4.8★ rated.",
keywords: "pub Yerevan, best pub Yerevan, bars in Yerevan, whiskey bar Yerevan, ribs restaurant Yerevan, rock pub, nightlife Yerevan, Beatles Pub",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Beatles Pub Yerevan - Legendary Pub Experience",
description: "Premium drinks, famous ribs, and unforgettable rock vibes. 4.8★ rated by 1,200+ guests.",
type: "website",
siteName: "Beatles Pub Yerevan",
url: "https://beatles.am",
images: [
{
url: "http://img.b2bpic.net/free-photo/man-playing-electric-guitar-live-concert_23-2149188054.jpg",
alt: "Beatles Pub Yerevan interior",
},
],
},
twitter: {
card: "summary_large_image",
title: "Beatles Pub Yerevan - Legendary Pub Experience",
description: "Premium drinks, famous ribs, and unforgettable rock vibes. Top-rated pub in downtown Yerevan.",
images: [
"http://img.b2bpic.net/free-photo/man-playing-electric-guitar-live-concert_23-2149188054.jpg",
],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +62,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +76,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -136,7 +136,7 @@ export default function MenuPage() {
title: "Whiskey Collection",
description: "300+ premium whiskies from Scotland, Ireland, Japan, and beyond. Single malts, blends, and rare expressions aged to perfection.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/delicious-mezcal-beverage-arrangement_23-2148993597.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-mezcal-beverage-arrangement_23-2148993597.jpg?_wi=2",
},
items: [
{
@@ -159,7 +159,7 @@ export default function MenuPage() {
title: "Beer & Ales",
description: "20+ draft beers featuring local Armenian breweries, classic European imports, and seasonal specialties. Always fresh, perfectly poured.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-working-beer-factory_23-2150573899.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-working-beer-factory_23-2150573899.jpg?_wi=2",
},
items: [
{
@@ -182,7 +182,7 @@ export default function MenuPage() {
title: "Signature Cocktails",
description: "Handcrafted cocktails inspired by rock legends, blending premium spirits with fresh ingredients and creative flair. Custom requests welcome.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/food-holiday-dinner-eating-hotel_1122-2017.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/food-holiday-dinner-eating-hotel_1122-2017.jpg?_wi=2",
},
items: [
{
@@ -219,7 +219,7 @@ export default function MenuPage() {
title: "Signature Pork Ribs",
description: "Slow-roasted, smoky pork ribs with house-made spice blend. Tender, flavorful, and the house specialty that keeps guests returning.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/grilled-sliced-lamb-wooden-board-potato-tomato-pepper-pickles-side-view_141793-3750.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/grilled-sliced-lamb-wooden-board-potato-tomato-pepper-pickles-side-view_141793-3750.jpg?_wi=2",
},
items: [
{
@@ -242,7 +242,7 @@ export default function MenuPage() {
title: "Appetizers & Starters",
description: "Classic pub fare with a twist. Wings, sliders, cheese boards, and traditional Armenian mezze selections to share.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/delicious-steak-with-spicy-sauce_140725-951.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-steak-with-spicy-sauce_140725-951.jpg?_wi=2",
},
items: [
{
@@ -265,7 +265,7 @@ export default function MenuPage() {
title: "Main Courses",
description: "Hearty dishes including burgers, grilled meats, pasta, and local Armenian specialties. Comfort food that pairs perfectly with our drink selection.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/adorable-dark-haired-female-model-enjoying-favorite-beverage-weekend_197531-7744.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/adorable-dark-haired-female-model-enjoying-favorite-beverage-weekend_197531-7744.jpg?_wi=2",
},
items: [
{
@@ -294,7 +294,7 @@ export default function MenuPage() {
description="Call ahead to reserve your table or stop by for spontaneous fun. Our kitchen is open during all pub hours, and specials rotate daily."
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/beautiful-architecture-building-seoul-city_74190-3344.jpg"
imageSrc="http://img.b2bpic.net/free-photo/beautiful-architecture-building-seoul-city_74190-3344.jpg?_wi=2"
imageAlt="Beatles Pub Yerevan location"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -134,21 +134,21 @@ export default function HomePage() {
background={{ variant: "plain" }}
leftCarouselItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/man-playing-electric-guitar-live-concert_23-2149188054.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-playing-electric-guitar-live-concert_23-2149188054.jpg?_wi=1",
imageAlt: "Beatles Pub main interior with stage and seating",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-their-time-dj-party_23-2149658384.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-their-time-dj-party_23-2149658384.jpg?_wi=1",
imageAlt: "Premium whiskey and beer selection at the bar",
},
]}
rightCarouselItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/delicious-steak-with-spicy-sauce_140725-951.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-steak-with-spicy-sauce_140725-951.jpg?_wi=1",
imageAlt: "Signature pork ribs dish",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-playing-guitar_23-2149223624.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-playing-guitar_23-2149223624.jpg?_wi=1",
imageAlt: "Live rock music performance",
},
]}
@@ -198,7 +198,7 @@ export default function HomePage() {
title: "300+ Whiskey Selection",
description: "Curated collection of finest spirits from around the world, expertly selected for the discerning palate.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/delicious-mezcal-beverage-arrangement_23-2148993597.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-mezcal-beverage-arrangement_23-2148993597.jpg?_wi=1",
},
items: [
{
@@ -221,7 +221,7 @@ export default function HomePage() {
title: "20+ Draft Beers",
description: "Selection of local Armenian beers and international favorites on tap, perfectly chilled and served fresh.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-working-beer-factory_23-2150573899.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-working-beer-factory_23-2150573899.jpg?_wi=1",
},
items: [
{
@@ -244,7 +244,7 @@ export default function HomePage() {
title: "Signature Pork Ribs",
description: "Smoky, tender ribs that have become legendary among locals and tourists alike. Perfectly seasoned and cooked to perfection.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/grilled-sliced-lamb-wooden-board-potato-tomato-pepper-pickles-side-view_141793-3750.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/grilled-sliced-lamb-wooden-board-potato-tomato-pepper-pickles-side-view_141793-3750.jpg?_wi=1",
},
items: [
{
@@ -267,7 +267,7 @@ export default function HomePage() {
title: "Signature Cocktails",
description: "Creative drinks crafted by experienced mixologists, blending classic techniques with modern flair.",
media: {
imageSrc: "http://img.b2bpic.net/free-photo/food-holiday-dinner-eating-hotel_1122-2017.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/food-holiday-dinner-eating-hotel_1122-2017.jpg?_wi=1",
},
items: [
{
@@ -325,7 +325,7 @@ export default function HomePage() {
name: "Sarah Johnson",
role: "Tourist from USA",
testimonial: "Best pub experience in Yerevan! The staff was incredibly welcoming, the whiskey selection is massive, and the ribs are absolutely incredible. Live music made it perfect.",
imageSrc: "http://img.b2bpic.net/free-photo/adorable-dark-haired-female-model-enjoying-favorite-beverage-weekend_197531-7744.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/adorable-dark-haired-female-model-enjoying-favorite-beverage-weekend_197531-7744.jpg?_wi=1",
icon: Star,
},
{
@@ -380,7 +380,7 @@ export default function HomePage() {
description="Reserve your table, get directions, or call ahead. We're located in the heart of downtown Yerevan and ready to welcome you."
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/beautiful-architecture-building-seoul-city_74190-3344.jpg"
imageSrc="http://img.b2bpic.net/free-photo/beautiful-architecture-building-seoul-city_74190-3344.jpg?_wi=1"
imageAlt="Beatles Pub Yerevan location in downtown"
mediaAnimation="slide-up"
mediaPosition="right"