Skip to content

Commit

Permalink
feat: add queues nav
Browse files Browse the repository at this point in the history
  • Loading branch information
hqwuzhaoyi committed Aug 16, 2023
1 parent 64ebecd commit f4693f9
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion apps/web/components/main-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,18 @@ export function MainNav() {
: "text-foreground/60"
)}
>
Subtitle Translate
Subtitle Translate
</Link>
<Link
href={process.env.NEXT_PUBLIC_API_URL + "/queues"}
className={cn(
"transition-colors hover:text-foreground/80",
pathname?.includes("/queues")
? "text-foreground"
: "text-foreground/60"
)}
>
Queues
</Link>
</nav>
</div>
Expand Down

0 comments on commit f4693f9

Please sign in to comment.