feat: add user count endpoint and integrate it into frontend components
All checks were successful
Build and Deploy Thoughts / build-and-deploy-local (push) Successful in 19s

This commit is contained in:
2025-09-09 03:07:48 +02:00
parent d92c9a747e
commit 4ea4f3149f
8 changed files with 193 additions and 4 deletions

View File

@@ -10,13 +10,13 @@ export function MainNav() {
return (
<nav className="inline-flex md:flex items-center space-x-6 text-sm font-medium">
<Link
href="/"
href="/users/all"
className={cn(
"transition-colors hover:text-foreground/80",
pathname === "/" ? "text-foreground" : "text-foreground/60"
pathname === "/users/all" ? "text-foreground" : "text-foreground/60"
)}
>
Feed
Discover
</Link>
<SearchInput />
</nav>