import type { Metadata } from "next"; import { Merriweather } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const merriweather = Merriweather({ variable: "--font-merriweather", subsets: ["latin"], weight: ["300", "400", "700", "900"], }); export const metadata: Metadata = { title: "NoGoogle - Independent IT School for Developers", description: "Learn web development, cloud computing, and AI from industry experts. NoGoogle is the independent coding school built by developers, for developers.", keywords: "coding school, web development, IT education, programming bootcamp, tech training", openGraph: { title: "NoGoogle - Learn to Code Without the Google Trap", description: "Master web development, cloud computing, and AI at NoGoogle—the independent IT school.", type: "website", siteName: "NoGoogle", images: [ { url: "https://img.b2bpic.net/free-photo/college-students-different-ethnicities-cramming_23-2149891341.jpg", alt: "NoGoogle IT School"}, ], }, twitter: { card: "summary_large_image", title: "NoGoogle - Independent IT School", description: "Learn from industry experts. Build real projects. Launch your tech career.", images: ["https://img.b2bpic.net/free-photo/college-students-different-ethnicities-cramming_23-2149891341.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}