From 8d9635029bf2c62ceb802ace25ce6968bb25592f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 17:04:06 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1439 +------------------------------------------- 1 file changed, 8 insertions(+), 1431 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d0fe58a..c8def28 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "MineCraft Videos - Watch & Share Amazing Minecraft Content", - description: "Discover epic Minecraft videos from top creators. Watch builds, speedruns, redstone tutorials, and adventures. Stream, share, and join the community.", - keywords: "Minecraft videos, streaming, gaming content, builds, speedrun, creative mode, redstone", - metadataBase: new URL("https://minecraftvideos.com"), - alternates: { - canonical: "https://minecraftvideos.com", - }, - openGraph: { - title: "MineCraft Videos - Your Hub for Epic Minecraft Content", - description: "Discover and share the best Minecraft videos. From stunning builds to speedruns - your destination for quality Minecraft streaming.", - siteName: "MineCraft Videos", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Acr5mGkbnJt9aUiawtXgsxlQZH/a-vibrant-minecraft-gaming-hero-banner-f-1772902681784-1aa8317c.png", - alt: "Epic Minecraft gaming hero", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "MineCraft Videos - Epic Minecraft Content Hub", - description: "Watch amazing Minecraft videos from talented creators worldwide.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Acr5mGkbnJt9aUiawtXgsxlQZH/a-vibrant-minecraft-gaming-hero-banner-f-1772902681784-1aa8317c.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Minecraft Videos - Watch Epic Gameplay & Builds", description: "Stream incredible Minecraft gameplay, builds, speedruns, and adventures from creators worldwide. Join the gaming community today."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -