import type { Metadata } from "next"; import { Rubik } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const rubik = Rubik({ variable: "--font-rubik", subsets: ["latin"], }); export const metadata: Metadata = { title: "STEP Academy | Learn Full-Stack Development", description: "Master web development with STEP Academy's comprehensive, industry-leading curriculum. Start from scratch or level up your skills. Join 5,000+ successful graduates.", keywords: "coding bootcamp, web development course, learn programming, full-stack development, online coding school, career change tech", metadataBase: new URL("https://stepacademy.com"), alternates: { canonical: "https://stepacademy.com" }, openGraph: { title: "STEP Academy | Learn Full-Stack Development", description: "Master web development with our comprehensive curriculum. Industry-ready training from beginner to expert.", url: "https://stepacademy.com", siteName: "STEP Academy", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/young-girl-listening-educational-documentary-laptop-takes-notes_482257-126301.jpg", alt: "STEP Academy - Learn to Code" } ] }, twitter: { card: "summary_large_image", title: "STEP Academy | Learn Full-Stack Development", description: "Master web development and launch your tech career with STEP Academy.", images: ["https://img.b2bpic.net/free-photo/young-girl-listening-educational-documentary-laptop-takes-notes_482257-126301.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}