5 Commits

Author SHA1 Message Date
8f43982610 Update src/app/page.tsx 2026-03-06 19:25:44 +00:00
4d2b3e427f Update src/app/layout.tsx 2026-03-06 19:25:44 +00:00
51ae9242d6 Merge version_1 into main
Merge version_1 into main
2026-03-06 19:24:38 +00:00
33f0d6ba1c Merge version_1 into main
Merge version_1 into main
2026-03-06 19:23:48 +00:00
dbdf79ce30 Merge version_1 into main
Merge version_1 into main
2026-03-06 19:22:28 +00:00
2 changed files with 7 additions and 31 deletions

View File

@@ -1,43 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { 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: { 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."};
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!"},
};
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={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1405,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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