Merge version_2 into main #2
@@ -1,58 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import type { Metadata } from 'next';
|
||||
import { Inter } from 'next/font/google';
|
||||
import './globals.css';
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ['latin'] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "The Bar - Premium Cocktails & Social Lounge", description: "Experience unforgettable nights at The Bar. Award-winning cocktails, expert mixologists, and exceptional atmosphere. Reserve your table today.", keywords: "cocktail bar, craft cocktails, lounge, nightlife, premium drinks, mixology, bar reservations", metadataBase: new URL("https://thebar.com"),
|
||||
alternates: {
|
||||
canonical: "https://thebar.com"},
|
||||
openGraph: {
|
||||
title: "The Bar - Premium Cocktails & Social Lounge", description: "Experience unforgettable nights at The Bar. Award-winning cocktails, expert mixologists, and exceptional atmosphere.", url: "https://thebar.com", siteName: "The Bar", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/young-pretty-lady-enjoying-free-time-city-cafeteria-bar-drinking-lemon-having-fun-trendy-hipster-outfit-toned-colors_291049-1730.jpg", alt: "The Bar - Premium Cocktails"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "The Bar - Premium Cocktails & Social Lounge", description: "Experience unforgettable nights at The Bar. Award-winning cocktails, expert mixologists, and exceptional atmosphere.", images: ["http://img.b2bpic.net/free-photo/young-pretty-lady-enjoying-free-time-city-cafeteria-bar-drinking-lemon-having-fun-trendy-hipster-outfit-toned-colors_291049-1730.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
title: 'The Bar - Premium Cocktail Lounge',
|
||||
description: 'Experience unforgettable moments at The Bar. Handcrafted cocktails, exceptional atmosphere, and premium service since 2015.',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${roboto.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -56,17 +56,23 @@ export default function LandingPage() {
|
||||
background={{ variant: "radial-gradient" }}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/young-pretty-lady-enjoying-free-time-city-cafeteria-bar-drinking-lemon-having-fun-trendy-hipster-outfit-toned-colors_291049-1730.jpg", imageAlt: "Premium bar ambiance"},
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/young-pretty-lady-enjoying-free-time-city-cafeteria-bar-drinking-lemon-having-fun-trendy-hipster-outfit-toned-colors_291049-1730.jpg", imageAlt: "Premium bar ambiance"
|
||||
},
|
||||
{
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/close-up-bartender-cocktail-shaker_23-2149132184.jpg", imageAlt: "Expert bartender crafting cocktails"},
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/close-up-bartender-cocktail-shaker_23-2149132184.jpg", imageAlt: "Expert bartender crafting cocktails"
|
||||
},
|
||||
{
|
||||
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/bartender-interacting-with-customers_107420-94873.jpg", imageAlt: "Friends enjoying drinks together"},
|
||||
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/bartender-interacting-with-customers_107420-94873.jpg", imageAlt: "Friends enjoying drinks together"
|
||||
},
|
||||
{
|
||||
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/male-bartender-serving-vibrant-drink-martini-glass_23-2148209354.jpg", imageAlt: "Signature cocktail presentation"},
|
||||
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/male-bartender-serving-vibrant-drink-martini-glass_23-2148209354.jpg", imageAlt: "Signature cocktail presentation"
|
||||
},
|
||||
{
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-lovely-date_23-2148422309.jpg", imageAlt: "Upscale bar interior"},
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-lovely-date_23-2148422309.jpg", imageAlt: "Upscale bar interior"
|
||||
},
|
||||
{
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-woman-holding-drink_23-2149734973.jpg", imageAlt: "Live entertainment and music"},
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-woman-holding-drink_23-2149734973.jpg", imageAlt: "Live entertainment and music"
|
||||
},
|
||||
]}
|
||||
autoPlay={true}
|
||||
autoPlayInterval={4000}
|
||||
@@ -77,7 +83,8 @@ export default function LandingPage() {
|
||||
<TextSplitAbout
|
||||
title="About The Bar"
|
||||
description={[
|
||||
"Since 2015, The Bar has been the destination for cocktail enthusiasts and those seeking an unforgettable social experience. Our expert mixologists craft each drink with precision and passion, using only premium spirits and fresh ingredients.", "We believe a great bar is more than drinks—it's about creating a welcoming space where friends become family, conversations flow, and memories are made. Our warm atmosphere, skilled bartenders, and carefully curated selection make every visit special.", "Whether you're celebrating a milestone, enjoying a casual evening, or discovering new flavors, The Bar is your haven for exceptional hospitality and world-class cocktails."]}
|
||||
"Since 2015, The Bar has been the destination for cocktail enthusiasts and those seeking an unforgettable social experience. Our expert mixologists craft each drink with precision and passion, using only premium spirits and fresh ingredients.", "We believe a great bar is more than drinks—it's about creating a welcoming space where friends become family, conversations flow, and memories are made. Our warm atmosphere, skilled bartenders, and carefully curated selection make every visit special.", "Whether you're celebrating a milestone, enjoying a casual evening, or discovering new flavors, The Bar is your haven for exceptional hospitality and world-class cocktails."
|
||||
]}
|
||||
buttons={[{ text: "Learn Our Story", href: "#about" }]}
|
||||
useInvertedBackground={true}
|
||||
showBorder={true}
|
||||
@@ -93,19 +100,23 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "01", title: "Signature Cocktails", description: "Our award-winning mixologists create unique, unforgettable drinks crafted with premium spirits and fresh ingredients.", imageSrc: "http://img.b2bpic.net/free-photo/alcohol-cocktail-side-view_140725-11195.jpg", imageAlt: "Signature cocktails"},
|
||||
id: "01", title: "Signature Cocktails", description: "Our award-winning mixologists create unique, unforgettable drinks crafted with premium spirits and fresh ingredients.", imageSrc: "http://img.b2bpic.net/free-photo/alcohol-cocktail-side-view_140725-11195.jpg", imageAlt: "Signature cocktails"
|
||||
},
|
||||
{
|
||||
id: "02", title: "Exceptional Atmosphere", description: "Experience an intimate, sophisticated ambiance with carefully designed lighting and acoustics for the perfect evening.", imageSrc: "http://img.b2bpic.net/free-photo/young-man-near-charming-woman-bar-counter_23-2148016853.jpg", imageAlt: "Bar atmosphere"},
|
||||
id: "02", title: "Exceptional Atmosphere", description: "Experience an intimate, sophisticated ambiance with carefully designed lighting and acoustics for the perfect evening.", imageSrc: "http://img.b2bpic.net/free-photo/young-man-near-charming-woman-bar-counter_23-2148016853.jpg", imageAlt: "Bar atmosphere"
|
||||
},
|
||||
{
|
||||
id: "03", title: "Live Entertainment", description: "Enjoy live music, DJ performances, and special events that elevate your night and create memorable moments.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-dancing-club_23-2149119625.jpg", imageAlt: "Live entertainment"},
|
||||
id: "03", title: "Live Entertainment", description: "Enjoy live music, DJ performances, and special events that elevate your night and create memorable moments.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-dancing-club_23-2149119625.jpg", imageAlt: "Live entertainment"
|
||||
},
|
||||
{
|
||||
id: "04", title: "Expert Service", description: "Our knowledgeable staff is dedicated to providing personalized recommendations and exceptional hospitality.", imageSrc: "http://img.b2bpic.net/free-photo/receptionist-handing-couple-room-key_482257-78780.jpg", imageAlt: "Professional service"},
|
||||
id: "04", title: "Expert Service", description: "Our knowledgeable staff is dedicated to providing personalized recommendations and exceptional hospitality.", imageSrc: "http://img.b2bpic.net/free-photo/receptionist-handing-couple-room-key_482257-78780.jpg", imageAlt: "Professional service"
|
||||
},
|
||||
]}
|
||||
gridVariant="bento-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Explore Events", href: "#metrics" }]}
|
||||
buttons={[{ text: "Discover Signature Cocktails", href: "#metrics" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -120,19 +131,23 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "8+", title: "Years of Excellence", items: [
|
||||
"Continuously rated top bar in the city", "Award-winning cocktail menu", "Trusted by thousands of guests"],
|
||||
"Continuously rated top bar in the city", "Award-winning cocktail menu", "Trusted by thousands of guests"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "2", value: "500+", title: "Events Hosted", items: [
|
||||
"Corporate celebrations and team building", "Private celebrations and milestones", "Weekly themed nights and specials"],
|
||||
"Corporate celebrations and team building", "Private celebrations and milestones", "Weekly themed nights and specials"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "3", value: "50+", title: "Signature Drinks", items: [
|
||||
"Seasonal cocktail creations", "Classic drinks with modern twists", "Craft non-alcoholic options"],
|
||||
"Seasonal cocktail creations", "Classic drinks with modern twists", "Craft non-alcoholic options"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "4", value: "5★", title: "Guest Satisfaction", items: [
|
||||
"95% customer return rate", "Highest reviews across platforms", "Consistently recommended"],
|
||||
"95% customer return rate", "Highest reviews across platforms", "Consistently recommended"
|
||||
],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -154,17 +169,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "James Mitchell", handle: "@jmitchell", testimonial: "The Bar has become my favorite spot. The cocktails are incredible, and the atmosphere is perfect for both casual hangouts and special celebrations. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3268.jpg", imageAlt: "James Mitchell"},
|
||||
id: "1", name: "James Mitchell", handle: "@jmitchell", testimonial: "The Bar has become my favorite spot. The cocktails are incredible, and the atmosphere is perfect for both casual hangouts and special celebrations. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3268.jpg", imageAlt: "James Mitchell"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Sarah Johnson", handle: "@sarahjohn", testimonial: "Celebrated my birthday here last month and it was absolutely amazing. The bartenders were attentive, the drinks were crafted perfectly, and the vibe was electric!", imageSrc: "http://img.b2bpic.net/free-photo/young-girl-looking-camera_1187-4948.jpg", imageAlt: "Sarah Johnson"},
|
||||
id: "2", name: "Sarah Johnson", handle: "@sarahjohn", testimonial: "Celebrated my birthday here last month and it was absolutely amazing. The bartenders were attentive, the drinks were crafted perfectly, and the vibe was electric!", imageSrc: "http://img.b2bpic.net/free-photo/young-girl-looking-camera_1187-4948.jpg", imageAlt: "Sarah Johnson"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Michael Chen", handle: "@mikechen", testimonial: "Best cocktail bar in the city, hands down. Every time I bring friends, they're blown away. The expertise and passion of the bartenders really shines through.", imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-thinking-posing-beige-wall_176420-144.jpg", imageAlt: "Michael Chen"},
|
||||
id: "3", name: "Michael Chen", handle: "@mikechen", testimonial: "Best cocktail bar in the city, hands down. Every time I bring friends, they're blown away. The expertise and passion of the bartenders really shines through.", imageSrc: "http://img.b2bpic.net/free-photo/young-successful-businessman-thinking-posing-beige-wall_176420-144.jpg", imageAlt: "Michael Chen"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Emily Rodriguez", handle: "@emilyrodriguez", testimonial: "The combination of excellent drinks, great music, and friendly staff makes The Bar the perfect place to unwind. I've been a regular for two years now!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-business-woman_158595-4755.jpg", imageAlt: "Emily Rodriguez"},
|
||||
id: "4", name: "Emily Rodriguez", handle: "@emilyrodriguez", testimonial: "The combination of excellent drinks, great music, and friendly staff makes The Bar the perfect place to unwind. I've been a regular for two years now!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-business-woman_158595-4755.jpg", imageAlt: "Emily Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "5", name: "David Park", handle: "@davidpark_", testimonial: "Hosted our company holiday party here and it was flawless. The team accommodated all our requests and created an unforgettable evening for everyone.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-content-elegant-man_23-2147689111.jpg", imageAlt: "David Park"},
|
||||
id: "5", name: "David Park", handle: "@davidpark_", testimonial: "Hosted our company holiday party here and it was flawless. The team accommodated all our requests and created an unforgettable evening for everyone.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-content-elegant-man_23-2147689111.jpg", imageAlt: "David Park"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Lisa Thompson", handle: "@lisathompson", testimonial: "The attention to detail is remarkable. From the presentation of each cocktail to the personalized recommendations, every aspect of my experience was exceptional.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-white-woman_23-2148941388.jpg", imageAlt: "Lisa Thompson"},
|
||||
id: "6", name: "Lisa Thompson", handle: "@lisathompson", testimonial: "The attention to detail is remarkable. From the presentation of each cocktail to the personalized recommendations, every aspect of my experience was exceptional.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-white-woman_23-2148941388.jpg", imageAlt: "Lisa Thompson"
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
speed={40}
|
||||
@@ -185,7 +206,8 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
names={["Premium Spirits Co.", "Craft Cocktail Magazine", "The Bartender's Guild", "Luxury Lounge Awards", "Nightlife Excellence", "Spirit & Taste", "Urban Bar Review"]}
|
||||
logos={[
|
||||
"http://img.b2bpic.net/free-vector/vintage-label-typeface-named-whiskey_1284-52068.jpg", "http://img.b2bpic.net/free-vector/four-retro-beer-stickers_23-2147629198.jpg", "http://img.b2bpic.net/free-vector/elegant-ornamental-logo_1057-2027.jpg", "http://img.b2bpic.net/free-vector/flat-beer-logo-collection_23-2147741399.jpg", "http://img.b2bpic.net/free-vector/duotone-gold-beer-brewery-label_742173-9272.jpg", "http://img.b2bpic.net/free-vector/promotion-retro-badges_23-2147517777.jpg", "http://img.b2bpic.net/free-vector/hand-drawn-brewery-logo-design_23-2150129481.jpg"]}
|
||||
"http://img.b2bpic.net/free-vector/vintage-label-typeface-named-whiskey_1284-52068.jpg", "http://img.b2bpic.net/free-vector/four-retro-beer-stickers_23-2147629198.jpg", "http://img.b2bpic.net/free-vector/elegant-ornamental-logo_1057-2027.jpg", "http://img.b2bpic.net/free-vector/flat-beer-logo-collection_23-2147741399.jpg", "http://img.b2bpic.net/free-vector/duotone-gold-beer-brewery-label_742173-9272.jpg", "http://img.b2bpic.net/free-vector/promotion-retro-badges_23-2147517777.jpg", "http://img.b2bpic.net/free-vector/hand-drawn-brewery-logo-design_23-2150129481.jpg"
|
||||
]}
|
||||
speed={40}
|
||||
showCard={true}
|
||||
buttons={[{ text: "Visit Us", href: "#contact" }]}
|
||||
@@ -201,17 +223,23 @@ export default function LandingPage() {
|
||||
ctaIcon={Phone}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What are your hours?", content: "We're open Tuesday through Thursday from 5pm to midnight, Friday and Saturday from 5pm to 2am, and Sunday from 5pm to 11pm. We're closed Mondays."},
|
||||
id: "1", title: "What are your hours?", content: "We're open Tuesday through Thursday from 5pm to midnight, Friday and Saturday from 5pm to 2am, and Sunday from 5pm to 11pm. We're closed Mondays."
|
||||
},
|
||||
{
|
||||
id: "2", title: "Do you take reservations?", content: "Yes, we highly recommend reservations, especially on weekends and for groups. You can reserve online or call us at (555) 123-4567."},
|
||||
id: "2", title: "Do you take reservations?", content: "Yes, we highly recommend reservations, especially on weekends and for groups. You can reserve online or call us at (555) 123-4567."
|
||||
},
|
||||
{
|
||||
id: "3", title: "What's your dress code?", content: "Smart casual is our dress code. We ask that guests avoid overly casual attire like gym wear. Sneakers and athletic wear are not permitted."},
|
||||
id: "3", title: "What's your dress code?", content: "Smart casual is our dress code. We ask that guests avoid overly casual attire like gym wear. Sneakers and athletic wear are not permitted."
|
||||
},
|
||||
{
|
||||
id: "4", title: "Do you host private events?", content: "Absolutely! We offer private event packages for corporate functions, celebrations, and special occasions. Contact us for details and custom quotes."},
|
||||
id: "4", title: "Do you host private events?", content: "Absolutely! We offer private event packages for corporate functions, celebrations, and special occasions. Contact us for details and custom quotes."
|
||||
},
|
||||
{
|
||||
id: "5", title: "Is there a happy hour?", content: "Yes! Join us Tuesday through Friday from 5pm to 7pm for 20% off select cocktails and appetizers."},
|
||||
id: "5", title: "Is there a happy hour?", content: "Yes! Join us Tuesday through Friday from 5pm to 7pm for 20% off select cocktails and appetizers."
|
||||
},
|
||||
{
|
||||
id: "6", title: "What payment methods do you accept?", content: "We accept all major credit cards, debit cards, and digital payment methods. We do not accept personal checks."},
|
||||
id: "6", title: "What payment methods do you accept?", content: "We accept all major credit cards, debit cards, and digital payment methods. We do not accept personal checks."
|
||||
},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
@@ -262,4 +290,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user