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();
});
});