Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e2d342ce75 | |||
| 8c8d93b203 | |||
| f73a1c182b | |||
| 18bb018de7 | |||
| 0fb9c540f9 |
@@ -1,54 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "KXN - Next-Gen Crypto Gaming", description: "Trade crypto with instant payouts, provably fair games, and premium gaming experience."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ export default function LandingPage() {
|
|||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Start Playing", href: "https://stake.com" },
|
{ text: "Start Playing", href: "/signup" },
|
||||||
{ text: "Explore Games", href: "#games" }
|
{ text: "Explore Games", href: "#games" }
|
||||||
]}
|
]}
|
||||||
carouselPosition="right"
|
carouselPosition="right"
|
||||||
@@ -223,8 +223,8 @@ export default function LandingPage() {
|
|||||||
title="Ready to Win Big?"
|
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."
|
description="Create your account now and claim your welcome bonus. Get instant access to 500+ games, provably fair gameplay, and lightning-fast payouts."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Play Now", href: "https://stake.com" },
|
{ text: "Play Now", href: "/signup" },
|
||||||
{ text: "Claim Bonus", href: "https://stake.com/signup" }
|
{ text: "Claim Bonus", href: "/signup" }
|
||||||
]}
|
]}
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
|||||||
Reference in New Issue
Block a user