SPB Git forge
15commits 1branches 0releases
29.7 MBsize
maindefault branch
10 days agolast push
TypeScript 36.3% Python 31.8% Go 18% JavaScript 9.8% Shell 1.9% SQL 1.4% CSS 0.5%
481 B · 11 lines tsx
Raw Blame History
1import type { Metadata } from 'next';2import { AdminShell } from '@/components/admin/AdminShell';34export const metadata: Metadata = { title: 'Admin', robots: { index: false, follow: false } };5export const dynamic = 'force-dynamic';67/** Separate layout: no public chrome, no SSE. Everything under /admin is a client island hitting /api/admin/*. */8export default function AdminLayout({ children }: { children: React.ReactNode }) {9  return <AdminShell>{children}</AdminShell>;10}11