chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:32:57 +08:00
commit cd420f9332
4811 changed files with 884702 additions and 0 deletions
@@ -0,0 +1,20 @@
export function DashboardAgentContextBanner({
projectSlug,
environmentSlug,
currentPage,
}: {
projectSlug: string;
environmentSlug: string;
currentPage: string;
}) {
return (
<div className="flex items-center gap-1.5 border-b border-grid-bright bg-background-bright/30 px-3 py-1.5 text-xs text-text-dimmed">
<span className="shrink-0">Context:</span>
<span className="truncate font-medium text-text-bright">{projectSlug}</span>
<span>/</span>
<span className="truncate">{environmentSlug}</span>
<span>/</span>
<span className="truncate capitalize">{currentPage}</span>
</div>
);
}