// Tenant-scoped "Apps" — placeholder. Real surface is the apps this // tenant publishes (and their per-app users/grants on the personal // cloud side). Wired into the nav so tenant admins see the route they // expect; data layer follows. import { LayoutGrid } from "lucide-react" import { AppShell } from "~/components/layout/app-shell" import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "~/components/ui/card" export default function AppsRoute() { return (

Apps

Apps this tenant publishes — and the users that have granted them access to their personal clouds.

Coming soon App authoring lives in arcadia-agents-manager today. This view will surface published apps + per-app grants once the catalog endpoint is wired.
) }