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> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title>Pi Web POC</title> <title>Pi Web</title>
<style> <style>
html, body { margin: 0; height: 100%; overflow: hidden; } html, body { margin: 0; height: 100%; overflow: hidden; }
body { min-height: 100dvh; } body { min-height: 100dvh; }
</style> </style>
</head> </head>
<body> <body>
<pi-web-poc></pi-web-poc> <pi-web-app></pi-web-app>
<script type="module" src="/src/main.ts"></script> <script type="module" src="/src/main.ts"></script>
</body> </body>
</html> </html>
+2 -2
View File
@@ -28,7 +28,7 @@ import "./ProjectDialog";
import "./WorkspacePanel"; import "./WorkspacePanel";
import { appStyles } from "./shared"; import { appStyles } from "./shared";
@customElement("pi-web-poc") @customElement("pi-web-app")
export class PiWebApp extends LitElement { export class PiWebApp extends LitElement {
@state() private state: AppState = initialAppState(); @state() private state: AppState = initialAppState();
@query("chat-view") private chatView?: ChatView; @query("chat-view") private chatView?: ChatView;
@@ -196,7 +196,7 @@ export class PiWebApp extends LitElement {
}); });
return html` return html`
<header> <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> <button title="Show Actions" aria-label="Show Actions" @click=${() => { this.setState({ actionPaletteOpen: true }); }}>Actions</button>
</header> </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> <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>