import PanelShell from '../../components/PanelShell'

export default function AdminLayout({ children }: { children: React.ReactNode }) {
  return (
    <PanelShell>
      <div className="bg-brown px-6 py-1.5 flex items-center gap-2">
        <span className="font-body text-xs text-cream/40 tracking-[0.2em] uppercase">
          Admin Paneli
        </span>
        <span className="bg-earth/30 text-earth px-1.5 py-0.5 rounded font-body text-xs font-medium">
          ADMIN
        </span>
      </div>
      {children}
    </PanelShell>
  )
}
