import type { Metadata } from "next"; import localFont from "next/font/local"; import "./globals.css"; import { LanguageProvider } from "@/components/LanguageContext"; const geistSans = localFont({ src: "./fonts/GeistVF.woff", variable: "--font-geist-sans", weight: "100 900", }); const geistMono = localFont({ src: "./fonts/GeistMonoVF.woff", variable: "--font-geist-mono", weight: "100 900", }); export const metadata: Metadata = { title: { default: "Is My Job Worth It?", template: "%s | Is My Job Worth It?" }, alternates: { languages: { "en-US": "/en", "zh-CN": "/", }, }, description: "这b班上得值不值 - 计算你的工作性价比 | Is My Job Worth It? - Calculate your job's value", verification: { google: "_OQGiIpYz87USAsgJV2C07-JJhQ8myV_4GoM1kDjFic", }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (