diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6713378..73f10e4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,18 +6,50 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Smart Tools Hub - Free Online Utility Tools & Converters", + description: "Access 8 essential online tools: speed test, WiFi analyzer, file converter, image compressor, password generator, IP finder, QR code generator, and text tools. Fast, secure, free.", + keywords: "online tools, file converter, image compressor, password generator, speed test, WiFi analyzer, QR code generator, utility tools", + metadataBase: new URL("https://smarttoolshub.com"), + alternates: { + canonical: "https://smarttoolshub.com" + }, + openGraph: { + title: "Smart Tools Hub - Free Online Utility Tools", + description: "All your productivity tools in one platform. Fast, secure, and free.", + url: "https://smarttoolshub.com", + siteName: "Smart Tools Hub", + type: "website", + images: [ + { + url: "https://smarttoolshub.com/og-image.jpg", + alt: "Smart Tools Hub Dashboard" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "Smart Tools Hub - Free Online Tools", + description: "Essential utilities for productivity: speed test, file conversion, password generator, and more.", + images: ["https://smarttoolshub.com/twitter-card.jpg"] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -26,7 +58,9 @@ export default function RootLayout({ return ( - + {children}