import type { Metadata } from "next"; import { Manrope } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { title: "TechAcademy - Master In-Demand Tech Skills", description: "Learn web development, data science, cloud computing, and more from industry experts. 95% job placement rate. Flexible part-time and full-time programs.", keywords: "IT academy, tech training, coding courses, web development, data science, cloud computing, online learning", metadataBase: new URL("https://techacademy.com"), alternates: { canonical: "https://techacademy.com" }, openGraph: { title: "TechAcademy - Master In-Demand Tech Skills", description: "Transform your career with comprehensive IT courses from industry experts.", siteName: "TechAcademy", url: "https://techacademy.com", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/learning-concept-close-up-student-using-laptop-alibrary_1150-16609.jpg", alt: "TechAcademy Hero" } ] }, twitter: { card: "summary_large_image", title: "TechAcademy - Master In-Demand Tech Skills", description: "Learn from industry experts. 95% job placement rate.", images: ["https://img.b2bpic.net/free-photo/learning-concept-close-up-student-using-laptop-alibrary_1150-16609.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}