|
|
|
|
@@ -1,54 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Montserrat } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
const montserrat = Montserrat({
|
|
|
|
|
variable: "--font-montserrat", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "KXN - Crypto Casino | Bitcoin Gaming & Betting", description: "Play 500+ games with Bitcoin, Ethereum & crypto. Instant payouts, provably fair gameplay, live dealers. Join millions in the future of online gaming.", keywords: "crypto casino, bitcoin gambling, ethereum gaming, online betting, provably fair, instant payouts", metadataBase: new URL("https://kxn.casino"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://kxn.casino"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "KXN - Next-Gen Crypto Gaming Platform", description: "Experience fair crypto gaming with instant payouts and 500+ games. Play with Bitcoin, Ethereum, and more.", url: "https://kxn.casino", siteName: "KXN", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AX3VsnMV7u77qvpOwlpn6P4nF4/a-sleek-dark-gaming-dashboard-interface--1772725192139-cc3c01df.png", alt: "KXN Crypto Casino Platform"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
type: "website"
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "KXN - Crypto Casino & Gaming", description: "Play fair games, win instant payouts with crypto.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AX3VsnMV7u77qvpOwlpn6P4nF4/a-sleek-dark-gaming-dashboard-interface--1772725192139-cc3c01df.png"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "KXN - Next-Gen Crypto Gaming", description: "Trade crypto with instant payouts, provably fair games, and premium gaming experience."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|