Skip to content

Commit

Permalink
chore: make tags a little more obvs
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasgriffintn committed Dec 5, 2024
1 parent f03e224 commit 7de34f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/app/blog/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default async function Home({ params }) {
<span className="text-sm text-muted-foreground">Tags:</span>
{post.metadata.tags.map((tag) => (
<Link key={tag} href={`/tags/${tag}`} muted>
{tag}
#{tag}
</Link>
))}
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/components/BlogCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export function BlogCard({ post }) {
<div className="flex flex-wrap items-center space-x-2">
{post.metadata.tags.map((tag) => (
<Link key={tag} href={`/tags/${tag}`} muted>
{tag}
#{tag}
</Link>
))}
</div>
Expand Down

0 comments on commit 7de34f2

Please sign in to comment.