3 Commits

Author SHA1 Message Date
e503102992 Update src/app/page.tsx 2026-03-06 13:35:59 +00:00
48abbdf40d Update src/app/layout.tsx 2026-03-06 13:35:59 +00:00
150c699754 Merge version_2 into main
Merge version_2 into main
2026-03-06 13:31:57 +00:00
2 changed files with 6 additions and 4 deletions

View File

@@ -5,10 +5,12 @@ import "./globals.css";
const poppins = Poppins({ const poppins = Poppins({
subsets: ["latin"], subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"], weight: ["300", "400", "500", "600", "700"],
variable: "--font-poppins"}); variable: "--font-poppins"
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "StreamVerse - Premium Entertainment Streaming", description: "Experience unlimited entertainment with StreamVerse. Stream thousands of movies, series, and exclusive originals in stunning 4K quality."}; title: "StreamVerse - Premium Entertainment Streaming", description: "Experience unlimited entertainment with StreamVerse. Stream thousands of movies, series, and exclusive originals in stunning 4K quality."
};
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -1387,4 +1389,4 @@ export default function RootLayout({
</body> </body>
</html> </html>
); );
} }

View File

@@ -230,4 +230,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }