import Link from 'next/link'; const navLinks = [ { href: '/', label: 'Dashboard' }, { href: '/students', label: 'Students' }, { href: '/jobs', label: 'Jobs' }, ]; export default function MainLayout({ children }: { children: React.ReactNode }) { return (