Skip to content
Dashboard

@vercel/toolbar available to use collaboration features in production

import { VercelToolbar } from '@vercel/toolbar/next';
import { useIsEmployee } from 'lib/auth'; // Your auth library
export function StaffToolbar() {
const isEmployee = useIsEmployee();
return isEmployee ? <VercelToolbar /> : null;
}

Ready to deploy?