import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { title: "Jobee - Dutch Job Listing Platform", description: "Find your dream job in the Netherlands across all 12 provinces. Connect with top employers and build your career."}; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}