feat: Rename application from "Codewalk District" to "Codewalkers"
Update all user-facing strings (HTML title, manifest, header logo, browser title updater), code comments, and documentation references. Folder name retained as-is.
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Codewalk District</title>
|
||||
<title>Codewalkers</title>
|
||||
<link rel="icon" href="/favicon.ico" sizes="48x48">
|
||||
<link rel="icon" href="/icon.svg" type="image/svg+xml">
|
||||
<link rel="apple-touch-icon" href="/icon-dark-180.png">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Codewalk District",
|
||||
"short_name": "Codewalk",
|
||||
"name": "Codewalkers",
|
||||
"short_name": "Codewalkers",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/icon-dark-192.png",
|
||||
|
||||
@@ -15,8 +15,8 @@ export function BrowserTitleUpdater() {
|
||||
if (runningCount > 0) parts.push(`${runningCount} running`);
|
||||
|
||||
document.title = parts.length > 0
|
||||
? `(${parts.join(", ")}) Codewalk District`
|
||||
: "Codewalk District";
|
||||
? `(${parts.join(", ")}) Codewalkers`
|
||||
: "Codewalkers";
|
||||
}, [runningCount, questionsCount]);
|
||||
|
||||
return null;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Shared React hooks for the Codewalk District frontend.
|
||||
* Shared React hooks for the Codewalkers frontend.
|
||||
*
|
||||
* This module provides reusable hooks for common patterns like
|
||||
* debouncing, subscription management, and agent interactions.
|
||||
|
||||
@@ -36,13 +36,11 @@ export function AppLayout({ children, onOpenCommandPalette, connectionState }: A
|
||||
<div className="flex h-12 items-center justify-between px-5">
|
||||
{/* Left: Logo + Nav */}
|
||||
<div className="flex items-center gap-6">
|
||||
<Link to="/initiatives" className="flex items-center gap-2.5">
|
||||
<span className="inline-flex h-7 w-7 items-center justify-center rounded bg-primary text-[11px] font-bold text-primary-foreground shadow-sm ring-1 ring-primary/20">
|
||||
CW
|
||||
</span>
|
||||
<span className="hidden items-baseline gap-1 sm:inline-flex">
|
||||
<span className="font-display font-bold tracking-tight">Codewalk</span>
|
||||
<span className="font-display font-medium tracking-tight text-muted-foreground">District</span>
|
||||
<Link to="/initiatives" className="flex items-center gap-2">
|
||||
<img src="/icon-dark-48.png" alt="" className="h-7 w-7 dark:hidden" />
|
||||
<img src="/icon-light-48.png" alt="" className="hidden h-7 w-7 dark:block" />
|
||||
<span className="hidden font-display font-bold tracking-tight sm:inline">
|
||||
Codewalkers
|
||||
</span>
|
||||
</Link>
|
||||
<nav className="flex items-center gap-1">
|
||||
|
||||
Reference in New Issue
Block a user