import type { Metadata } from "next"; import { Work_Sans } from "next/font/google"; import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; 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: "TechAcademy - Master In-Demand IT Skills Online", description: "Learn programming, web development, data science and more from expert instructors. Career-focused IT courses with job placement assistance. Start your tech career today.", keywords: "IT academy, programming courses, web development, data science, online learning, tech education, coding bootcamp, career training", metadataBase: new URL("https://techacademy.com"), alternates: { canonical: "https://techacademy.com" }, openGraph: { title: "TechAcademy - Learn IT Skills Online", description: "Master in-demand IT skills with expert instructors, hands-on projects, and career support", url: "https://techacademy.com", siteName: "TechAcademy", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/programming-background-with-html-text_23-2150040420.jpg", alt: "TechAcademy hero section" } ] }, twitter: { card: "summary_large_image", title: "TechAcademy - Learn IT Skills Online", description: "Master in-demand IT skills with expert instructors and career support", images: ["https://img.b2bpic.net/free-photo/programming-background-with-html-text_23-2150040420.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}