'use client'; import type { ReactNode } from 'react'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { Building2 } from 'lucide-react'; const LINKS = [ { label: 'Overview', href: '/employer' }, { label: 'Talent search', href: '/employer/talent' }, { label: 'Postings', href: '/employer/postings' }, ]; export default function EmployerLayout({ children }: { children: ReactNode }) { const pathname = usePathname() ?? ''; return (
{children}
); }