-

+
LocalLoop
Connecting communities through local events
diff --git a/components/ui/Navigation.tsx b/components/ui/Navigation.tsx
index b15e3a2..911c03a 100644
--- a/components/ui/Navigation.tsx
+++ b/components/ui/Navigation.tsx
@@ -2,8 +2,9 @@
import React, { useState } from 'react'
import Link from 'next/link'
+import Image from 'next/image'
import { useRouter } from 'next/navigation'
-import { Menu, X } from 'lucide-react'
+import { Menu, X, Shield, Settings } from 'lucide-react'
import { useAuth } from '@/lib/auth-context'
import { useAuth as useAuthHook } from '@/lib/hooks/useAuth'
import { ProfileDropdown } from '@/components/auth/ProfileDropdown'
@@ -38,27 +39,51 @@ export function Navigation({
- {/* Left side - Logo (always shown, always clickable home button) */}
-
-

-
LocalLoop
-
+ {/* Left side - Logo and Admin/Staff Badge */}
+
+
+
+
LocalLoop
+
+
+ {/* Admin/Staff Badge */}
+ {user && (isAdmin || isStaff) && (
+
+ {isAdmin ? (
+
+ ) : (
+
+ )}
+
+ {isAdmin ? 'Admin' : 'Staff'}
+
+
+ )}
+
{/* Right side - Full Navigation (always shown) */}
<>
{/* Desktop Navigation */}