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