From 31ef3057e008d7afdc6e73dfc2e7d21ba62300a6 Mon Sep 17 00:00:00 2001 From: Avi Date: Sun, 23 Aug 2026 10:43:20 -0500 Subject: [PATCH] Rebrand remaining UI strings to Keynectr Sidebar brand, home welcome title, settings version line, stylesheet header comment and the three tests asserting them. --- frontend/src/components/Sidebar.tsx | 3 +-- frontend/src/screens/HomeScreen.tsx | 2 +- frontend/src/screens/SettingsScreen.tsx | 2 +- frontend/src/styles.css | 2 +- frontend/src/test/App.test.tsx | 2 +- frontend/src/test/HomeScreen.test.tsx | 2 +- frontend/src/test/SettingsScreen.test.tsx | 2 +- 7 files changed, 7 insertions(+), 8 deletions(-) diff --git a/frontend/src/components/Sidebar.tsx b/frontend/src/components/Sidebar.tsx index 3337ffb..4d06c24 100644 --- a/frontend/src/components/Sidebar.tsx +++ b/frontend/src/components/Sidebar.tsx @@ -32,8 +32,7 @@ export function Sidebar({ screen, onNavigate }: SidebarProps) {
- Nostr Feed - Manager + Keynectr
diff --git a/frontend/src/screens/HomeScreen.tsx b/frontend/src/screens/HomeScreen.tsx index d9c58dd..31c38a3 100644 --- a/frontend/src/screens/HomeScreen.tsx +++ b/frontend/src/screens/HomeScreen.tsx @@ -77,7 +77,7 @@ export function HomeScreen({ onNavigate, onCreateProfile }: HomeScreenProps) {
} - title="Welcome to Nostr Feed Manager" + title="Welcome to Keynectr" description={ You haven't created a profile yet. A Nostr profile is your identity on the public diff --git a/frontend/src/screens/SettingsScreen.tsx b/frontend/src/screens/SettingsScreen.tsx index ef714a0..88d013f 100644 --- a/frontend/src/screens/SettingsScreen.tsx +++ b/frontend/src/screens/SettingsScreen.tsx @@ -161,7 +161,7 @@ export function SettingsScreen() {
Application
-
Nostr Feed Manager v{state?.version ?? '?'}
+
Keynectr v{state?.version ?? '?'}
Backend
diff --git a/frontend/src/styles.css b/frontend/src/styles.css index 43946ff..beb19db 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -1,5 +1,5 @@ /* ========================================================================= - Nostr Feed Manager — design system + Keynectr — design system Light/dark/system themes via `data-theme` on . ========================================================================= */ diff --git a/frontend/src/test/App.test.tsx b/frontend/src/test/App.test.tsx index a073116..aeb665b 100644 --- a/frontend/src/test/App.test.tsx +++ b/frontend/src/test/App.test.tsx @@ -15,7 +15,7 @@ describe('App', () => { const { user } = renderApp(backend); render(); - expect(await screen.findByText('Welcome to Nostr Feed Manager')).toBeInTheDocument(); + expect(await screen.findByText('Welcome to Keynectr')).toBeInTheDocument(); expect(screen.getByRole('button', { name: /Create your first profile/i })).toBeInTheDocument(); expect(screen.getByText(/A Nostr profile is your identity/i)).toBeInTheDocument(); diff --git a/frontend/src/test/HomeScreen.test.tsx b/frontend/src/test/HomeScreen.test.tsx index 3e6d572..8b8572d 100644 --- a/frontend/src/test/HomeScreen.test.tsx +++ b/frontend/src/test/HomeScreen.test.tsx @@ -48,7 +48,7 @@ describe('HomeScreen', () => { const { onCreateProfile } = renderHome(backend); renderWithApp(); - expect(await screen.findByText('Welcome to Nostr Feed Manager')).toBeInTheDocument(); + expect(await screen.findByText('Welcome to Keynectr')).toBeInTheDocument(); await userEvent .setup() .click(screen.getByRole('button', { name: /Create your first profile/i })); diff --git a/frontend/src/test/SettingsScreen.test.tsx b/frontend/src/test/SettingsScreen.test.tsx index 0605e84..928f5aa 100644 --- a/frontend/src/test/SettingsScreen.test.tsx +++ b/frontend/src/test/SettingsScreen.test.tsx @@ -61,7 +61,7 @@ describe('SettingsScreen', () => { installFakeBackend(backend); renderWithApp(); - expect(await screen.findByText(/Nostr Feed Manager v/)).toBeInTheDocument(); + expect(await screen.findByText(/Keynectr v/)).toBeInTheDocument(); expect(screen.getByText('Rust (nostr-sdk)')).toBeInTheDocument(); }); });