import type { Metadata } from "next"; import { Fira_Code } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const firaCode = Fira_Code({ variable: "--font-fira-code", subsets: ["latin"], }); export const metadata: Metadata = { title: "Pes Coder - Learn Web, Mobile & Data Science Coding", description: "Master coding with industry experts. Comprehensive courses from web development to AI. Job placement assistance, mentoring, and career support included.", keywords: "coding courses, web development, programming bootcamp, learn to code, full stack, mobile development, data science, job placement", metadataBase: new URL("https://pescoder.com"), alternates: { canonical: "https://pescoder.com" }, openGraph: { title: "Pes Coder Academy - Transform Your Tech Career", description: "Master coding skills with expert instructors. Flexible courses, 1-on-1 mentoring, and real job placement support.", url: "https://pescoder.com", siteName: "Pes Coder", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg", alt: "Pes Coder coding classroom" }] }, twitter: { card: "summary_large_image", title: "Learn Coding at Pes Coder Academy", description: "Industry-expert instructors, hands-on projects, career support. Start your coding journey today.", images: ["https://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}