import type { PlatformApp } from "@/lib/apps-catalog"; import { Badge } from "./Badge"; export interface AppTileProps { app: PlatformApp; onClick?: () => void; } export function AppTile({ app, onClick }: AppTileProps) { const isAvailable = app.status === "available"; return ( ); }