Fortune-PlayLogic/app/layout.tsx
2026-03-02 19:09:43 +03:00

35 lines
892 B
TypeScript

import type { Metadata } from "next"
import { Geist, Geist_Mono } from "next/font/google"
import "./globals.css"
import LayoutClientWrapper from "@/components/layout/layout-client-wrapper"
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
})
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
})
export const metadata: Metadata = {
title: "Harifsport - Sports Betting",
description: "Harifsport sportsbook - Live betting, in-play events, and more",
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en" className="dark">
<body
className={`${geistSans.variable} ${geistMono.variable} bg-background text-foreground antialiased`}
>
<LayoutClientWrapper>{children}</LayoutClientWrapper>
</body>
</html>
)
}