This commit is contained in:
Auto
2026-01-07 09:28:16 +02:00
parent 1e20ba9cc9
commit 63731c169f
7 changed files with 13 additions and 13 deletions

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Autonomous Coder</title>
<title>AutoCoder</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">

View File

@@ -1,5 +1,5 @@
{
"name": "autonomous-coding-ui",
"name": "autocoder",
"private": true,
"version": "1.0.0",
"type": "module",

View File

@@ -4,7 +4,7 @@ import { useProjectWebSocket } from './hooks/useWebSocket'
import { useFeatureSound } from './hooks/useFeatureSound'
import { useCelebration } from './hooks/useCelebration'
const STORAGE_KEY = 'autonomous-coder-selected-project'
const STORAGE_KEY = 'autocoder-selected-project'
import { ProjectSelector } from './components/ProjectSelector'
import { KanbanBoard } from './components/KanbanBoard'
import { AgentControl } from './components/AgentControl'
@@ -134,7 +134,7 @@ function App() {
<div className="flex items-center justify-between">
{/* Logo and Title */}
<h1 className="font-display text-2xl font-bold tracking-tight uppercase">
Autonomous Coder
AutoCoder
</h1>
{/* Controls */}
@@ -180,7 +180,7 @@ function App() {
{!selectedProject ? (
<div className="neo-empty-state mt-12">
<h2 className="font-display text-2xl font-bold mb-2">
Welcome to Autonomous Coder
Welcome to AutoCoder
</h2>
<p className="text-[var(--color-neo-text-secondary)] mb-4">
Select a project from the dropdown above or create a new one to get started.