diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-12-03 03:51:29 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-12-04 23:27:28 +0900 |
| commit | 58d132139ba8d5fa17c8681a0275047ce4cca809 (patch) | |
| tree | 7dd18f5de496483b7d318e12e43379a51f3a6056 /frontend/src/pages/Settings.tsx | |
| parent | aac4e9ccdebe52c156506d1899d5a38e99366f69 (diff) | |
| download | feedaka-58d132139ba8d5fa17c8681a0275047ce4cca809.tar.gz feedaka-58d132139ba8d5fa17c8681a0275047ce4cca809.tar.zst feedaka-58d132139ba8d5fa17c8681a0275047ce4cca809.zip | |
feat(frontend): design update
Diffstat (limited to 'frontend/src/pages/Settings.tsx')
| -rw-r--r-- | frontend/src/pages/Settings.tsx | 21 |
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> ); } |
