aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/components/Navigation.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/Navigation.tsx')
-rw-r--r--frontend/src/components/Navigation.tsx16
1 files changed, 7 insertions, 9 deletions
diff --git a/frontend/src/components/Navigation.tsx b/frontend/src/components/Navigation.tsx
index f5771df..08a523f 100644
--- a/frontend/src/components/Navigation.tsx
+++ b/frontend/src/components/Navigation.tsx
@@ -11,15 +11,13 @@ export function Navigation() {
<nav className="bg-white shadow-sm border-b border-gray-200">
<div className="container mx-auto px-4">
<div className="flex items-center justify-between h-16">
- <div className="flex items-center space-x-8">
- <Link href="/" className="text-xl font-bold text-gray-900">
- feedaka
- </Link>
- <div className="flex space-x-6">
- <MenuItem path="/unread" label="Unread" icon={faBookOpen} />
- <MenuItem path="/read" label="Read" icon={faCircleCheck} />
- <MenuItem path="/settings" label="Settings" icon={faGear} />
- </div>
+ <Link href="/" className="text-xl font-bold text-gray-900">
+ feedaka
+ </Link>
+ <div className="flex space-x-6">
+ <MenuItem path="/unread" label="Unread" icon={faBookOpen} />
+ <MenuItem path="/read" label="Read" icon={faCircleCheck} />
+ <MenuItem path="/settings" label="Settings" icon={faGear} />
</div>
</div>
</div>