diff --git a/src/components/til-item.tsx b/src/components/til-item.tsx index e5491c07..b55f00f6 100644 --- a/src/components/til-item.tsx +++ b/src/components/til-item.tsx @@ -1,3 +1,4 @@ +import Link from 'next/link' import { TIL } from '#content' import { slug } from '~/lib/slug' @@ -18,12 +19,13 @@ export function TilItem({ til }: { til: TIL }) {
{til.tags.map(tag => ( - {tag} - + ))}