Skip to content

Commit 0cdb75b

Browse files
committed
Bye kittens
1 parent 0ab7c2c commit 0cdb75b

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

src/components/tags/Tag.jsx

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,10 @@ function Tag({ name, numberOfRoutes, id }) {
88
className="block bg-emerald-400 dark:bg-emerald-800 mb-3 rounded-md p-3"
99
to={`/tag/${id}`}
1010
>
11-
<div className="flex flex-row">
12-
<div className="flex w-10">
13-
<img alt="kitten" src={`http://placekitten.com/30/30?image=${id}`} />
14-
</div>
15-
<div className="flex flex-col flex-auto pl-3">
16-
<span className="block text-lg font-bold">{name}</span>
17-
<span className="text-s text-zinc-600 dark:text-zinc-300">
18-
{numberOfRoutes} historier
19-
</span>
20-
</div>
21-
</div>
11+
<span className="block text-lg font-bold">{name}</span>
12+
<span className="text-s text-zinc-600 dark:text-zinc-300">
13+
{numberOfRoutes} historier
14+
</span>
2215
</Link>
2316
);
2417
}

0 commit comments

Comments
 (0)