Remove POC branding

This commit is contained in:
Federico Jaramillo Martinez
2026-05-08 23:12:02 +02:00
parent 6856178e36
commit 1360c40e70
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -3,14 +3,14 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title>Pi Web POC</title>
<title>Pi Web</title>
<style>
html, body { margin: 0; height: 100%; overflow: hidden; }
body { min-height: 100dvh; }
</style>
</head>
<body>
<pi-web-poc></pi-web-poc>
<pi-web-app></pi-web-app>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
+2 -2
View File
@@ -28,7 +28,7 @@ import "./ProjectDialog";
import "./WorkspacePanel";
import { appStyles } from "./shared";
@customElement("pi-web-poc")
@customElement("pi-web-app")
export class PiWebApp extends LitElement {
@state() private state: AppState = initialAppState();
@query("chat-view") private chatView?: ChatView;
@@ -196,7 +196,7 @@ export class PiWebApp extends LitElement {
});
return html`
<header>
<strong>Pi Web POC</strong>
<strong>Pi Web</strong>
<button title="Show Actions" aria-label="Show Actions" @click=${() => { this.setState({ actionPaletteOpen: true }); }}>Actions</button>
</header>
<project-list .projects=${this.state.projects} .selected=${this.state.selectedProject} .onSelect=${(project: Project) => this.withChatScrollTransition(() => this.workspaces.selectProject(project))} .onClose=${(project: Project) => this.projects.closeProject(project.id)}></project-list>