From 979d54914e6e741223a38ed18ec3113d602580be Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 16:50:22 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..4fb481b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Open_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Thrillerz x shreyprods - Premium Football Editing Packs", + description: "Professional football editing resources: scenepacks, satfeed packs, overlays & transitions. Instant download, used by top editors worldwide.", + keywords: "football editing packs, scenepack, satfeed, overlays, transitions, FIFA, football content creator, YouTube edits", + metadataBase: new URL("https://thrillerz.com"), + alternates: { + canonical: "https://thrillerz.com", + }, + openGraph: { + title: "Thrillerz x shreyprods - Premium Football Editing Packs", + description: "Professional football editing resources for YouTube and Instagram creators. Instant download access.", + url: "https://thrillerz.com", + siteName: "Thrillerz x shreyprods", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtmtSDJJ8irVXrYfv9ZWJHYvV6/ultra-cinematic-professional-football-pl-1773420561528-75ce5cdc.png", + alt: "Premium football editing packs", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Thrillerz x shreyprods - Premium Football Editing Packs", + description: "Professional editing resources for football content creators", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtmtSDJJ8irVXrYfv9ZWJHYvV6/ultra-cinematic-professional-football-pl-1773420561528-75ce5cdc.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}