import type { Metadata } from "next"; import { Outfit } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const outfit = Outfit({ variable: "--font-outfit", subsets: ["latin"], }); export const metadata: Metadata = { title: "Code with me - Learn Web Development & Programming", description: "Join 2,500+ students learning coding from industry experts. Web development, React, Full Stack courses with 1-on-1 mentorship. Start today!", keywords: "coding courses, web development bootcamp, learn programming, React courses, Full Stack development", openGraph: { title: "Code with me - Learn to Code", description: "Master web development and programming with expert instructors. Join our community of 2,500+ successful graduates.", siteName: "Code with me", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484694244-h6z6ypcz.jpg", alt: "Learn coding with Code with me" } ] }, twitter: { card: "summary_large_image", title: "Code with me - Learn to Code", description: "Master web development and programming. Expert instructors, hands-on projects, certificates.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484694244-h6z6ypcz.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}