1 parent c1429d4 commit aa6aba8Copy full SHA for aa6aba8
2 files changed
app/(public)/agent/[slug]/page.tsx
@@ -67,7 +67,9 @@ export default async function AgentPage({ params }: PageProps) {
67
Registry
68
</Link>
69
<span>/</span>
70
- <span>Agents</span>
+ <Link href="/agent" className="hover:text-text-secondary">
71
+ Agents
72
+ </Link>
73
74
<span>{agent.name}</span>
75
</div>
app/(public)/tag/[slug]/page.tsx
@@ -48,9 +48,11 @@ export default async function TagPage({ params }: PageProps) {
48
49
50
51
- <span>Tags</span>
+ <Link href="/tag" className="hover:text-text-secondary">
52
+ Tags
53
54
- <span>#{tag.label}</span>
55
+ <span>#{tag.slug}</span>
56
57
58
{/* Header */}
0 commit comments