diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index ac4610a..9f835de 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
+
+
{children}
-
+
+
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index a12ba93..daf6c1d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -30,7 +30,7 @@ export default function LandingPage() {
@@ -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."
+ },
]}
/>
@@ -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" },
],
},
{