Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3373550a4e | |||
| e2d342ce75 | |||
| 8c8d93b203 | |||
| f73a1c182b | |||
| 18bb018de7 | |||
| 0fb9c540f9 |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -80,7 +80,7 @@ export default function LandingPage() {
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Start Playing", href: "https://stake.com" },
|
||||
{ text: "Start Playing", href: "/signup" },
|
||||
{ text: "Explore Games", href: "#games" }
|
||||
]}
|
||||
carouselPosition="right"
|
||||
@@ -223,8 +223,8 @@ export default function LandingPage() {
|
||||
title="Ready to Win Big?"
|
||||
description="Create your account now and claim your welcome bonus. Get instant access to 500+ games, provably fair gameplay, and lightning-fast payouts."
|
||||
buttons={[
|
||||
{ text: "Play Now", href: "https://stake.com" },
|
||||
{ text: "Claim Bonus", href: "https://stake.com/signup" }
|
||||
{ text: "Play Now", href: "/signup" },
|
||||
{ text: "Claim Bonus", href: "/signup" }
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user