+ )}
{/* Saved Feeds */}
diff --git a/src/lib/extraKinds.ts b/src/lib/extraKinds.ts
index 27b59ba8..9bce615a 100644
--- a/src/lib/extraKinds.ts
+++ b/src/lib/extraKinds.ts
@@ -95,7 +95,7 @@ export const EXTRA_KINDS: ExtraKindDef[] = [
kind: 6,
id: 'reposts',
feedKey: 'feedIncludeReposts',
- label: 'Reposts',
+ label: 'Reposted Notes',
description: 'Shared posts from others',
addressable: false,
section: 'feed',
@@ -105,7 +105,7 @@ export const EXTRA_KINDS: ExtraKindDef[] = [
kind: 16,
id: 'generic-reposts',
feedKey: 'feedIncludeReposts',
- label: 'Generic Reposts',
+ label: 'Reposted Other Content',
description: 'Shared non-text-note posts from others',
addressable: false,
section: 'feed',
diff --git a/src/pages/ContentSettingsPage.tsx b/src/pages/ContentSettingsPage.tsx
index 28f20c41..f77f9bf8 100644
--- a/src/pages/ContentSettingsPage.tsx
+++ b/src/pages/ContentSettingsPage.tsx
@@ -8,8 +8,8 @@ export function ContentSettingsPage() {
const { config } = useAppContext();
useSeoMeta({
- title: `Feed | Settings | ${config.appName}`,
- description: 'Choose what types of posts appear in your feed',
+ title: `Home Feed | Settings | ${config.appName}`,
+ description: 'Choose what types of posts appear in your home feed',
});
return (
@@ -21,9 +21,9 @@ export function ContentSettingsPage() {
-
Feed
+
Home Feed
- Nostr supports many content types beyond text posts. Customize which kinds appear in your feed.
+ Nostr supports many content types beyond text posts. Customize which kinds appear in your home feed.
diff --git a/src/pages/SettingsPage.tsx b/src/pages/SettingsPage.tsx
index 702deedf..8005ef36 100644
--- a/src/pages/SettingsPage.tsx
+++ b/src/pages/SettingsPage.tsx
@@ -32,8 +32,8 @@ const settingsSections: SettingsSection[] = [
},
{
id: 'feed',
- label: 'Feed',
- description: 'Choose what types of posts appear in your feed',
+ label: 'Home Feed',
+ description: 'Choose what types of posts appear in your home feed',
icon: Rss,
path: '/settings/feed',
},