From 87905cc9f3b5f3881ed0c2519be4fad884387893 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 15:24:28 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 +++++++-------------------------------------- 1 file changed, 7 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e3866d4..732233f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "COPYBOT - Clone Discord Servers in 3 Clicks", description: "COPYBOT makes cloning Discord servers effortless with advanced features, real-time tracking, and selective copying. Clone roles, channels, categories in seconds.", keywords: "discord, server cloner, duplicate server, discord bot, server management, discord automation", openGraph: { - title: "COPYBOT - Clone Discord Servers in 3 Clicks", description: "Advanced Discord server cloning with real-time tracking and selective copying. Start free.", type: "website", siteName: "COPYBOT"}, - twitter: { - card: "summary_large_image", title: "COPYBOT - Clone Discord Servers in 3 Clicks", description: "Clone your Discord servers in seconds with COPYBOT. Real-time tracking and selective copying."}, - robots: { - index: true, - follow: true, - }, -}; + title: "COPYBOT - Discord Server Cloning Made Easy", description: "Clone your Discord servers in 3 clicks with real-time tracking and selective copying. Advanced automation for server management."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}