Files
community-rule/app/(admin)/layout.tsx
T
2026-04-18 14:12:49 -06:00

8 lines
315 B
TypeScript

import type { ReactNode } from "react";
// Operator/admin dashboards (e.g. `/monitor`) intentionally render without the
// public marketing footer. Auth/access is enforced upstream.
export default function AdminLayout({ children }: { children: ReactNode }) {
return <main className="flex-1">{children}</main>;
}