aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/pages/Settings.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/pages/Settings.tsx')
-rw-r--r--frontend/src/pages/Settings.tsx21
1 files changed, 7 insertions, 14 deletions
diff --git a/frontend/src/pages/Settings.tsx b/frontend/src/pages/Settings.tsx
index b10cbf1..9b1e04c 100644
--- a/frontend/src/pages/Settings.tsx
+++ b/frontend/src/pages/Settings.tsx
@@ -16,24 +16,17 @@ export function Settings() {
};
return (
- <div className="mx-auto max-w-4xl">
- <h1 className="mb-6 text-2xl font-bold text-gray-900">Feed Settings</h1>
-
- {/* Subscribe to New Feed Section */}
- <div className="mb-8">
- <h2 className="mb-4 text-xl font-semibold text-gray-800">
- Subscribe to New Feed
- </h2>
+ <div className="mx-auto max-w-3xl space-y-10">
+ <section>
<AddFeedForm onFeedAdded={handleFeedAdded} />
- </div>
+ </section>
- {/* Manage Feeds Section */}
- <div className="mb-8">
- <h2 className="mb-4 text-xl font-semibold text-gray-800">
- Manage Feeds
+ <section>
+ <h2 className="mb-4 text-sm font-semibold uppercase tracking-wide text-stone-900">
+ Your Feeds
</h2>
<FeedList onFeedUnsubscribed={handleFeedUnsubscribed} />
- </div>
+ </section>
</div>
);
}