"use client"; import type { ReactNode } from "react"; import SettingsNavigation from "./SettingsNavigation"; import PageHeading from "./PageHeading"; type AdminShellProps = { title: string; subtitle?: string; actions?: ReactNode; rail?: ReactNode; children: ReactNode; }; export default function AdminShell({ title, subtitle, actions, rail, children }: AdminShellProps) { return (