Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 19:25:49 +00:00
2 changed files with 7 additions and 31 deletions

View File

@@ -1,43 +1,20 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Rozowy - Live Gaming Streamer | Watch on Kick", description: "Join Rozowy's epic gaming streams on Kick. Watch live gameplay, community moments, and amazing highlights. Connect with our gaming community today!", keywords: "streamer, gaming, Kick, live gaming, esports", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Rozowy - Live Gaming Streamer", description: "Join the stream! Watch epic gaming content and connect with an amazing community on Kick.", type: "website", siteName: "Rozowy"},
twitter: {
card: "summary_large_image", title: "Rozowy - Live Gaming Streamer", description: "Watch me stream live on Kick!"},
};
title: "Rozowy - Live Gaming Streams", description: "Join Rozowy's live gaming streams on Kick. Watch epic moments, connect with the community, and experience next-level entertainment."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1405,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -49,7 +49,7 @@ export default function LandingPage() {
tagIcon={Zap}
tagAnimation="slide-up"
buttons={[
{ text: "Watch Live on Kick", href: "https://kick.com" },
{ text: "Start Watching Now", href: "https://kick.com" },
{ text: "Join Discord", href: "#" }
]}
buttonAnimation="slide-up"