6 Commits

Author SHA1 Message Date
3373550a4e Merge version_2 into main
Merge version_2 into main
2026-03-05 15:44:13 +00:00
e2d342ce75 Update src/app/page.tsx 2026-03-05 15:44:08 +00:00
8c8d93b203 Update src/app/layout.tsx 2026-03-05 15:44:08 +00:00
f73a1c182b Merge version_1 into main
Merge version_1 into main
2026-03-05 15:43:06 +00:00
18bb018de7 Merge version_1 into main
Merge version_1 into main
2026-03-05 15:42:10 +00:00
0fb9c540f9 Merge version_1 into main
Merge version_1 into main
2026-03-05 15:40:46 +00:00
2 changed files with 10 additions and 45 deletions

View File

@@ -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>
);
}

View File

@@ -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}