import Link from 'next/link'; import { LayoutDashboard, Users, Briefcase, Settings, FileText, LogOut, Handshake, Shield } from 'lucide-react'; import { logout } from '../actions'; export default function AdminLayout({ children }: { children: React.ReactNode }) { return (
{/* Sidebar */} {/* Main Content */}
{children}
); }