diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b4b8868..85a3656 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,25 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Poppins } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const poppins = Poppins({ + subsets: ['latin'], + weight: ['400', '500', '600', '700', '800', '900'], + display: 'swap', }); export const metadata: Metadata = { - title: "Fool's Gold Social Bar | Premium Cocktails & Nightlife in Stellenbosch", description: "Experience Stellenbosch's top-rated social venue. Premium craft cocktails, gourmet bar food, live music, and vibrant atmosphere. Open daily until 3 AM. 4.2★ from 189 reviews.", keywords: "cocktail bar Stellenbosch, nightlife venues South Africa, premium bar food, craft cocktails, social bar, Dorp Street, Stellenbosch restaurants", openGraph: { - title: "Fool's Gold Social Bar | Stellenbosch's Hidden Gem", description: "Premium cocktails, gourmet food, and unforgettable vibes. Open until 3 AM daily.", siteName: "Fool's Gold Social Bar", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/empty-glasses-counter_23-2148209368.jpg", alt: "luxury cocktail bar nightlife atmosphere"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Fool's Gold Social Bar | Stellenbosch Nightlife", description: "Experience premium cocktails, bar food & live music until 3 AM.", images: ["http://img.b2bpic.net/free-photo/empty-glasses-counter_23-2148209368.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + 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({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -