5 Commits

Author SHA1 Message Date
871260cfa0 Update src/app/page.tsx 2026-03-06 13:31:53 +00:00
01c964138f Update src/app/layout.tsx 2026-03-06 13:31:53 +00:00
198b18f006 Merge version_1 into main
Merge version_1 into main
2026-03-06 13:30:55 +00:00
68b76e797e Merge version_1 into main
Merge version_1 into main
2026-03-06 13:30:05 +00:00
09d787f9f1 Merge version_1 into main
Merge version_1 into main
2026-03-06 13:28:52 +00:00
2 changed files with 14 additions and 46 deletions

View File

@@ -1,58 +1,23 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Poppins } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const poppins = Poppins({
variable: "--font-halant", subsets: ["latin"], subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"], weight: ["300", "400", "500", "600", "700"],
}); variable: "--font-poppins"});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "StreamVerse | Premium Entertainment Streaming Platform", description: "Experience unlimited entertainment with StreamVerse. Stream 10,000+ movies and series in 4K quality. Start your free trial today.", keywords: "streaming, movies, series, entertainment, netflix alternative, 4K streaming, online entertainment", metadataBase: new URL("https://streamverse.com"), title: "StreamVerse - Premium Entertainment Streaming", description: "Experience unlimited entertainment with StreamVerse. Stream thousands of movies, series, and exclusive originals in stunning 4K quality."};
openGraph: {
title: "StreamVerse | Your Entertainment, Your Way", description: "Discover unlimited movies, series, and exclusive originals in stunning 4K. Join 50M+ subscribers worldwide.", siteName: "StreamVerse", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZcdZMtPpRBrtn5OnUEHMGi5cl/a-cinematic-3d-rendered-streaming-platfo-1772803683352-ad87cf9f.png", alt: "A cinematic 3D rendered streaming platform hero background featuring abstract geometric shapes, glow"
}
]
},
twitter: {
card: "summary_large_image", title: "StreamVerse | Premium Streaming Entertainment", description: "Stream in 4K. Download for offline. Unlimited entertainment.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZcdZMtPpRBrtn5OnUEHMGi5cl/a-cinematic-3d-rendered-streaming-platfo-1772803683352-ad87cf9f.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={poppins.variable}>{children}
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1420,7 +1385,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -81,6 +81,10 @@ export default function LandingPage() {
title="Featured Blockbusters" title="Featured Blockbusters"
description="Discover our handpicked collection of premium entertainment curated just for you" description="Discover our handpicked collection of premium entertainment curated just for you"
tag="Now Streaming" tag="Now Streaming"
buttons={[
{ text: "View All", href: "#featured" },
{ text: "Browse Library", href: "#trending" }
]}
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
@@ -226,4 +230,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }