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: "Start Code - IT Training & Programming Courses", description: "Learn web development, Python, data science & cybersecurity. Expert instructors, job-focused curriculum, and career support.", keywords: "IT courses, programming training, web development, cybersecurity, data science, coding bootcamp", robots: { index: true, follow: true }, openGraph: { title: "Start Code - Master Modern Technology", description: "Transform your career with industry-leading IT training and expert instruction", type: "website", siteName: "Start Code" }, twitter: { card: "summary_large_image", title: "Start Code - IT Training & Programming Courses", description: "Learn web development, Python, data science & cybersecurity with expert instructors" } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}