Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/ambient-ui/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Ambient UI
# ACP UI

Operations console for the Ambient Code Platform. Next.js BFF with OIDC authentication (Keycloak), shadcn/ui components, and Red Hat design system.
Operations console for ACP. Next.js BFF with OIDC authentication (Keycloak), shadcn/ui components, and Red Hat design system.

## Local Development

Expand Down
2 changes: 1 addition & 1 deletion components/ambient-ui/src/app/(dashboard)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default function ProjectPickerPage() {
<EmptyState
icon={FolderOpen}
title="No projects found"
description="Create a project to get started with the Ambient Code Platform."
description="Create a project to get started with ACP."
/>
<div className="flex justify-center">
<CreateProjectDialog />
Expand Down
4 changes: 2 additions & 2 deletions components/ambient-ui/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const redHatMono = Red_Hat_Mono({
})

export const metadata: Metadata = {
title: "Ambient UI",
description: "Ambient Code Platform operations console",
title: "ACP",
description: "Agent Control Plane operations console",
}

export default function RootLayout({
Expand Down
2 changes: 1 addition & 1 deletion components/ambient-ui/src/components/app-sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export function AppSidebar({ projectId }: AppSidebarProps) {
<SidebarHeader>
<div className="flex items-center gap-2 px-2 py-1.5">
<Bot className="size-5 text-primary" />
<span className="text-sm font-semibold tracking-tight">Ambient</span>
<span className="text-sm font-semibold tracking-tight">ACP</span>
</div>
<ProjectSelector projectId={projectId} />
</SidebarHeader>
Expand Down
2 changes: 1 addition & 1 deletion components/ambient-ui/src/components/nav-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export function NavHeader({ projectId, projectName, pageName, sessionName, detai
<BreadcrumbItem>
<BreadcrumbLink asChild>
<Link href="/">
<span>Ambient</span>
<span>ACP</span>
</Link>
</BreadcrumbLink>
</BreadcrumbItem>
Expand Down
Loading