From 01c964138f3ebf02f2f6019baf0e4c32010e96f9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 13:31:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 ++++++++-------------------------------------- 1 file changed, 9 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b988bbf..90fad97 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], +const poppins = Poppins({ + subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); + variable: "--font-poppins"}); 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"), - 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 - } -}; + 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({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}