import type { Metadata } from "next"; import { Sora } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const sora = Sora({ variable: "--font-sora", subsets: ["latin"], }); export const metadata: Metadata = { title: "Go Work | IT Training & Career Development Bootcamp", description: "Master IT skills with hands-on courses, expert instructors, and 92% job placement. Start your tech career with Go Work bootcamp today.", keywords: "IT training, coding bootcamp, tech courses, software development, career training, programming school", robots: { index: true, follow: true }, openGraph: { title: "Go Work | IT Training & Career Development Bootcamp", description: "Master IT skills with hands-on courses, expert instructors, and 92% job placement. Start your tech career with Go Work bootcamp today.", type: "website", siteName: "Go Work", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492693670-lj7ueobz.png", alt: "Go Work IT Training" } ] }, twitter: { card: "summary_large_image", title: "Go Work | IT Training & Career Development Bootcamp", description: "Master IT skills with hands-on courses, expert instructors, and 92% job placement.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492693670-lj7ueobz.png"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}