3 Commits

Author SHA1 Message Date
79a3ab27bb Update src/app/page.tsx 2026-03-07 21:08:43 +00:00
68af761a7d Update src/app/layout.tsx 2026-03-07 21:08:42 +00:00
cc549e6143 Merge version_2 into main
Merge version_2 into main
2026-03-07 21:06:00 +00:00
2 changed files with 11 additions and 36 deletions

View File

@@ -9,7 +9,8 @@ const poppins = Poppins({
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Fool's Gold Social Bar | Premium Cocktails & Social Venue in Stellenbosch", description: "Experience Stellenbosch's hidden gem for craft cocktails, gourmet food, and vibrant atmosphere. Open until 3 AM daily. Reserve your table today."}; title: "Fool's Gold Social Bar | Premium Cocktails & Social Venue in Stellenbosch", description: "Experience Stellenbosch's hidden gem for craft cocktails, gourmet food, and vibrant atmosphere. Open until 3 AM daily. Reserve your table today."
};
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -17,7 +18,7 @@ export default function RootLayout({
children: React.ReactNode; children: React.ReactNode;
}) { }) {
return ( return (
<html lang="en"> <html lang="en" suppressHydrationWarning>
<body className={poppins.className}> <body className={poppins.className}>
{children} {children}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; import HeroSplit from '@/components/sections/hero/HeroSplit';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
@@ -41,7 +41,7 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardDashboard <HeroSplit
tag="Premium Social Venue" tag="Premium Social Venue"
tagIcon={Sparkles} tagIcon={Sparkles}
tagAnimation="slide-up" tagAnimation="slide-up"
@@ -53,36 +53,10 @@ export default function LandingPage() {
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
dashboard={{ imageSrc="http://img.b2bpic.net/free-photo/empty-glasses-counter_23-2148209368.jpg"
title: "Tonight's Vibe", logoIcon: Wine, imageAlt="luxury cocktail bar nightlife atmosphere"
imageSrc: "http://img.b2bpic.net/free-photo/empty-glasses-counter_23-2148209368.jpg", imageAlt: "luxury cocktail bar nightlife atmosphere", sidebarItems: [ mediaAnimation="slide-up"
{ icon: Music, active: true }, imagePosition="right"
{ icon: Music },
{ icon: Users }
],
buttons: [
{ text: "Find Us", href: "#contact" },
{ text: "Call: +27 21 887 7539", href: "tel:+27218877539" }
],
stats: [
{ title: "Rating", values: [4.2, 0, 0], description: "From 189 Reviews" },
{ title: "Open Until", values: [3, 0, 0], valueSuffix: " AM", description: "Daily Service" },
{ title: "Vibe Level", values: [10, 0, 0], description: "Premium Social Energy" }
],
chartTitle: "Weekly Atmosphere", chartData: [
{ value: 60 },
{ value: 75 },
{ value: 85 },
{ value: 90 },
{ value: 95 }
],
listTitle: "What's on Tonight", listItems: [
{ icon: Sparkles, title: "Signature Cocktails", status: "Available" },
{ icon: Utensils, title: "Premium Bar Food", status: "Fresh" },
{ icon: Music, title: "Live Music & DJ", status: "Playing" }
],
searchPlaceholder: "Search menu or events"
}}
/> />
</div> </div>
@@ -94,7 +68,7 @@ export default function LandingPage() {
]} ]}
buttons={[ buttons={[
{ text: "Reserve Now", href: "contact" }, { text: "Reserve Now", href: "contact" },
{ text: "Follow on Instagram", href: "https://instagram.com" } { text: "Follow on Instagram", href: "https://www.instagram.com/foolsgoldsocial/" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
showBorder={true} showBorder={true}
@@ -264,7 +238,7 @@ export default function LandingPage() {
}, },
{ {
title: "Follow Us", items: [ title: "Follow Us", items: [
{ label: "Instagram", href: "https://instagram.com" }, { label: "Instagram", href: "https://www.instagram.com/foolsgoldsocial/" },
{ label: "Facebook", href: "https://facebook.com" }, { label: "Facebook", href: "https://facebook.com" },
{ label: "WhatsApp", href: "https://wa.me/27218877539" } { label: "WhatsApp", href: "https://wa.me/27218877539" }
] ]