import type { Metadata } from "next"; import { Work_Sans } from "next/font/google"; import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const workSans = Work_Sans({ variable: "--font-work-sans", subsets: ["latin"], }); const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); export const metadata: Metadata = { title: "IT Home - Quality IT Education & Career Training", description: "Master in-demand tech skills with IT Home. Comprehensive IT courses with 94% job placement rate. Enroll in web development, data science, and programming programs.", keywords: "IT school, web development course, data science training, programming education, tech career", robots: { index: true, follow: true }, openGraph: { title: "IT Home - Quality IT Education & Career Training", description: "Master in-demand tech skills with IT Home. Comprehensive IT courses with 94% job placement rate.", type: "website", siteName: "IT Home" }, twitter: { card: "summary_large_image", title: "IT Home - Quality IT Education & Career Training", description: "Master in-demand tech skills with industry experts. Start your tech career today." } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}