Merge version_2 into main #2
@@ -1,51 +1,40 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
});
|
||||
import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper";
|
||||
import { Tag } from "@/components/tag/Tag";
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "YC CLUB - Kimberley's Premier Wine Lounge", description: "Experience exceptional wines and premium ambiance at YC CLUB, Kimberley's favourite wine bar. Book your table, host events, or enjoy a relaxed evening.", keywords: "wine lounge Kimberley, wine bar Northern Cape, premium wines, wine tasting, private events Kimberley", metadataBase: new URL("https://yc-club.co.za"),
|
||||
alternates: {
|
||||
canonical: "https://yc-club.co.za"},
|
||||
openGraph: {
|
||||
title: "YC CLUB - Kimberley's Premier Wine Lounge", description: "Unwind. Connect. Celebrate. Experience exceptional wines in an elegantly curated space.", url: "https://yc-club.co.za", siteName: "YC CLUB", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/virtual-love-cute-blonde-girl-red-dress-distance-date-with-wine-holding-flowers-happy_140725-163934.jpg", alt: "elegant wine lounge interior warm lighting"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "YC CLUB - Kimberley's Premier Wine Lounge", description: "Experience exceptional wines in an elegantly curated space.", images: ["http://img.b2bpic.net/free-photo/virtual-love-cute-blonde-girl-red-dress-distance-date-with-wine-holding-flowers-happy_140725-163934.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "YC CLUB - Kimberley's Premier Wine Lounge", description: "Unwind. Connect. Celebrate. Experience exceptional wines in an elegantly curated space where every moment feels premium."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<body className={`${inter.variable}`}>
|
||||
<ServiceWrapper>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
</ServiceWrapper>
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
||||
document.documentElement.classList.add('dark')
|
||||
} else {
|
||||
document.documentElement.classList.remove('dark')
|
||||
}
|
||||
`,
|
||||
}}
|
||||
/>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1402,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -30,7 +30,7 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="YC CLUB"
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Experiences", id: "features" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
@@ -57,7 +57,7 @@ export default function LandingPage() {
|
||||
title: "YC CLUB Experience", logoIcon: Wine,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/virtual-love-cute-blonde-girl-red-dress-distance-date-with-wine-holding-flowers-happy_140725-163934.jpg", searchPlaceholder: "Search our collection...", buttons: [
|
||||
{ text: "Reserve Now", href: "contact" },
|
||||
{ text: "View Menu", href: "#features" },
|
||||
{ text: "View Menu", href: "features" },
|
||||
],
|
||||
sidebarItems: [
|
||||
{ icon: Wine },
|
||||
@@ -109,17 +109,20 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: "curated-wine", label: "Curated", title: "Premium Wine Selection", items: [
|
||||
"Carefully selected wines from top vineyards", "Expert curation by our sommelier", "Regular exclusive tastings and releases"],
|
||||
"Carefully selected wines from top vineyards", "Expert curation by our sommelier", "Regular exclusive tastings and releases"
|
||||
],
|
||||
buttons: [{ text: "Explore Collection", href: "#" }],
|
||||
},
|
||||
{
|
||||
id: "private-events", label: "Events", title: "Private Event Spaces", items: [
|
||||
"Perfect for birthdays and celebrations", "Intimate and upscale ambiance", "Professional event coordination available"],
|
||||
"Perfect for birthdays and celebrations", "Intimate and upscale ambiance", "Professional event coordination available"
|
||||
],
|
||||
buttons: [{ text: "Book Event", href: "contact" }],
|
||||
},
|
||||
{
|
||||
id: "lounge-atmosphere", label: "Lounge", title: "Relaxed Lounge Atmosphere", items: [
|
||||
"Comfortable, welcoming environment", "Premium ambiance with warm lighting", "Loved by locals and visitors alike"],
|
||||
"Comfortable, welcoming environment", "Premium ambiance with warm lighting", "Loved by locals and visitors alike"
|
||||
],
|
||||
buttons: [{ text: "Reserve Table", href: "contact" }],
|
||||
},
|
||||
]}
|
||||
@@ -130,17 +133,23 @@ export default function LandingPage() {
|
||||
<TestimonialCardTwelve
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-standing-with-crossed-arms_23-2148095775.jpg", imageAlt: "Sarah Johnson - Professional"},
|
||||
id: "1", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-standing-with-crossed-arms_23-2148095775.jpg", imageAlt: "Sarah Johnson - Professional"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Emma Chen", imageSrc: "http://img.b2bpic.net/free-photo/side-view-beautiful-woman-with-folded-arms-looking-camera_23-2147876783.jpg", imageAlt: "Emma Chen - Event Planner"},
|
||||
id: "2", name: "Emma Chen", imageSrc: "http://img.b2bpic.net/free-photo/side-view-beautiful-woman-with-folded-arms-looking-camera_23-2147876783.jpg", imageAlt: "Emma Chen - Event Planner"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Michael Peters", imageSrc: "http://img.b2bpic.net/free-photo/male-executive-with-glasses_1098-760.jpg", imageAlt: "Michael Peters - Restaurant Owner"},
|
||||
id: "3", name: "Michael Peters", imageSrc: "http://img.b2bpic.net/free-photo/male-executive-with-glasses_1098-760.jpg", imageAlt: "Michael Peters - Restaurant Owner"
|
||||
},
|
||||
{
|
||||
id: "4", name: "David & Lisa Brown", imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-conference-room-thinking-about-future_482257-25787.jpg", imageAlt: "David & Lisa Brown - Regular Guests"},
|
||||
id: "4", name: "David & Lisa Brown", imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-conference-room-thinking-about-future_482257-25787.jpg", imageAlt: "David & Lisa Brown - Regular Guests"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Jennifer Woods", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-businesswoman-strict-clothes-black-jacket-with-optical-sunglasses-smiling-white-wall-work-job-office-female-business-meeting_140725-65028.jpg", imageAlt: "Jennifer Woods - Customer"},
|
||||
id: "5", name: "Jennifer Woods", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-businesswoman-strict-clothes-black-jacket-with-optical-sunglasses-smiling-white-wall-work-job-office-female-business-meeting_140725-65028.jpg", imageAlt: "Jennifer Woods - Customer"
|
||||
},
|
||||
{
|
||||
id: "6", name: "James Anderson", imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081912.jpg", imageAlt: "James Anderson - Customer"},
|
||||
id: "6", name: "James Anderson", imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081912.jpg", imageAlt: "James Anderson - Customer"
|
||||
},
|
||||
]}
|
||||
cardTitle="Loved by Locals. Hear from our happy customers who've made YC CLUB their favourite spot."
|
||||
cardTag="See what they say"
|
||||
@@ -160,7 +169,8 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Wine Lovers Club", "Local Hospitality Association", "Kimberley Tourism Board", "Event Professionals Network", "Regional Sommelier Guild", "Vintners Collective", "Local Business Council"]}
|
||||
"Wine Lovers Club", "Local Hospitality Association", "Kimberley Tourism Board", "Event Professionals Network", "Regional Sommelier Guild", "Vintners Collective", "Local Business Council"
|
||||
]}
|
||||
speed={40}
|
||||
showCard={true}
|
||||
/>
|
||||
@@ -176,17 +186,23 @@ export default function LandingPage() {
|
||||
animationType="smooth"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What are your opening hours?", content: "We are open Wednesday to Sunday from 5 PM to midnight. Special arrangements can be made for private events. Please call us on 074 717 0462 for more information."},
|
||||
id: "1", title: "What are your opening hours?", content: "We are open Wednesday to Sunday from 5 PM to midnight. Special arrangements can be made for private events. Please call us on 074 717 0462 for more information."
|
||||
},
|
||||
{
|
||||
id: "2", title: "Do you host private events?", content: "Yes! We have dedicated private event spaces perfect for birthdays, celebrations, corporate events, and intimate gatherings. Our team will help coordinate every detail to make your event exceptional."},
|
||||
id: "2", title: "Do you host private events?", content: "Yes! We have dedicated private event spaces perfect for birthdays, celebrations, corporate events, and intimate gatherings. Our team will help coordinate every detail to make your event exceptional."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Can I book a table in advance?", content: "Absolutely. We recommend booking in advance, especially on weekends. You can book through our website or call us directly at 074 717 0462. We have limited availability this weekend, so early booking is advised."},
|
||||
id: "3", title: "Can I book a table in advance?", content: "Absolutely. We recommend booking in advance, especially on weekends. You can book through our website or call us directly at 074 717 0462. We have limited availability this weekend, so early booking is advised."
|
||||
},
|
||||
{
|
||||
id: "4", title: "What makes your wine selection special?", content: "Our wines are personally curated by our sommelier with over 50 premium selections from top vineyards. We focus on quality, diversity, and unique finds that you won't find elsewhere in Kimberley."},
|
||||
id: "4", title: "What makes your wine selection special?", content: "Our wines are personally curated by our sommelier with over 50 premium selections from top vineyards. We focus on quality, diversity, and unique finds that you won't find elsewhere in Kimberley."
|
||||
},
|
||||
{
|
||||
id: "5", title: "Are you suitable for business meetings?", content: "Yes! Our relaxed yet sophisticated ambiance makes YC CLUB ideal for business meetings, client entertainment, and professional networking events. We offer private spaces and can accommodate special catering requests."},
|
||||
id: "5", title: "Are you suitable for business meetings?", content: "Yes! Our relaxed yet sophisticated ambiance makes YC CLUB ideal for business meetings, client entertainment, and professional networking events. We offer private spaces and can accommodate special catering requests."
|
||||
},
|
||||
{
|
||||
id: "6", title: "What's your location exactly?", content: "We're located in Kimberley, Northern Cape, South Africa. Our exact address is available on Google Maps. You can get directions through our website or call us for detailed directions."},
|
||||
id: "6", title: "What's your location exactly?", content: "We're located in Kimberley, Northern Cape, South Africa. Our exact address is available on Google Maps. You can get directions through our website or call us for detailed directions."
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -217,18 +233,18 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Navigate", items: [
|
||||
{ label: "Home", href: "#home" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Experiences", href: "#features" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "About", href: "about" },
|
||||
{ label: "Experiences", href: "features" },
|
||||
{ label: "Contact", href: "contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Call Us", href: "tel:0747170462" },
|
||||
{ label: "Book a Table", href: "#contact" },
|
||||
{ label: "Private Events", href: "#contact" },
|
||||
{ label: "Inquiries", href: "#contact" },
|
||||
{ label: "Book a Table", href: "contact" },
|
||||
{ label: "Private Events", href: "contact" },
|
||||
{ label: "Inquiries", href: "contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user