From 1a50c7b632acc7d6f28da6ad49694c90b19b4764 Mon Sep 17 00:00:00 2001 From: Mikkel Georgsen Date: Mon, 30 Mar 2026 23:44:47 +0200 Subject: [PATCH] feat(03-01): replace Paperclip icon with Box in CompanyRail, use VOCAB in Auth - CompanyRail: import Box from lucide-react instead of Paperclip - CompanyRail: render icon instead of in top rail - Auth.tsx: import VOCAB from @paperclipai/branding - Auth.tsx: use VOCAB.appName for logo text and sign-in/create-account headings --- ui/src/components/CompanyRail.tsx | 6 +++--- ui/src/pages/Auth.tsx | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ui/src/components/CompanyRail.tsx b/ui/src/components/CompanyRail.tsx index 2ec8fc06..56a3247b 100644 --- a/ui/src/components/CompanyRail.tsx +++ b/ui/src/components/CompanyRail.tsx @@ -1,5 +1,5 @@ import { useCallback, useEffect, useMemo, useState } from "react"; -import { Paperclip, Plus } from "lucide-react"; +import { Box, Plus } from "lucide-react"; import { useQueries } from "@tanstack/react-query"; import { DndContext, @@ -268,9 +268,9 @@ export function CompanyRail() { return (
- {/* Paperclip icon - aligned with top sections (implied line, no visible border) */} + {/* Nexus icon */}
- +
{/* Company list */} diff --git a/ui/src/pages/Auth.tsx b/ui/src/pages/Auth.tsx index 97e95d58..695d7d13 100644 --- a/ui/src/pages/Auth.tsx +++ b/ui/src/pages/Auth.tsx @@ -1,4 +1,5 @@ import { useEffect, useMemo, useState } from "react"; +import { VOCAB } from "@paperclipai/branding"; import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query"; import { useNavigate, useSearchParams } from "@/lib/router"; import { authApi } from "../api/auth"; @@ -75,11 +76,11 @@ export function AuthPage() {
- Paperclip + {VOCAB.appName}

- {mode === "sign_in" ? "Sign in to Paperclip" : "Create your Paperclip account"} + {mode === "sign_in" ? `Sign in to ${VOCAB.appName}` : `Create your ${VOCAB.appName} account`}

{mode === "sign_in"