Add the Notes tab

This commit is contained in:
2026-09-01 13:08:17 -07:00
parent f79a44e0a8
commit 3704064006
5 changed files with 309 additions and 0 deletions
@@ -18,6 +18,7 @@ import AutomationTab from "./AutomationTab";
import ConfigTab from "./ConfigTab";
import FilesTab from "./FilesTab";
import BrowserTab from "./BrowserTab";
import NotesTab from "./NotesTab";
import { formatUptime } from "./format";
import { describeLeftovers, leftoverPronoun, leftoverVerb } from "./removalReport";
@@ -28,6 +29,7 @@ const TABS = [
{ id: "config", label: "Config" },
{ id: "files", label: "Files" },
{ id: "browser", label: "Browser" },
{ id: "notes", label: "Notes" },
] as const;
export type ProjectHomeTabId = (typeof TABS)[number]["id"];
@@ -255,6 +257,7 @@ export default function ProjectHome({ projectId, active }: Props) {
{tab === "browser" && (
<BrowserTab project={project} active={active && tab === "browser"} />
)}
{tab === "notes" && <NotesTab project={project} />}
</div>
{showMigration && (