From 48b4e6c01555d64d76197734a8214ca40966f1a0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 15:33:32 +0000 Subject: [PATCH] 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 590a34c..d4b3989 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 { Public_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 { Public_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 publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Telegram Bot Hub - Discover & Submit Bots", + description: "The ultimate directory for discovering powerful Telegram bots. Browse 2,500+ bots across AI, music, downloads, utilities, crypto, and education. Submit your bot free.", + keywords: "telegram bots, bot directory, telegram bot discovery, telegram bot hub, bot submission, best telegram bots", + metadataBase: new URL("https://telegrambothub.com"), + alternates: { + canonical: "https://telegrambothub.com", + }, + openGraph: { + title: "Telegram Bot Hub - Discover & Submit Bots", + description: "The ultimate directory for discovering powerful Telegram bots. Browse 2,500+ bots and find the perfect one for your needs.", + url: "https://telegrambothub.com", + siteName: "Telegram Bot Hub", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnzLyhtB5RymsHsflern7ouDVJ/a-modern-sleek-dashboard-interface-showc-1773243150075-688c9009.png", + alt: "Telegram Bot Hub - Bot Discovery Platform", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Telegram Bot Hub - Discover & Submit Bots", + description: "The ultimate directory for discovering powerful Telegram bots.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnzLyhtB5RymsHsflern7ouDVJ/a-modern-sleek-dashboard-interface-showc-1773243150075-688c9009.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}