File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -34,13 +34,17 @@ const { entry } = Astro.props;
3434 </div >
3535 <div >
3636 <div class =" flex items-center gap-2 mb-4 flex-wrap" >
37- <span
38- class =" text-blue-600 dark:text-blue-400 cursor-pointer bg-blue-100 dark:bg-blue-500/15 py-1 px-3 rounded-full text-sm" >
39- { entry .data .Category }
40- </span >
37+ <a href ={ " /software?category=" + entry .data .Category } >
38+ <span
39+ class =" text-blue-600 dark:text-blue-400 cursor-pointer bg-blue-100 dark:bg-blue-500/15 py-1 px-3 rounded-full text-sm" >
40+ { entry .data .Category }
41+ </span >
42+ </a >
4143 {
4244 entry .data .Tags .slice (0 , 5 ).map ((tag ) => (
43- <Badge variant = " secondary" >{ tag } </Badge >
45+ <a href = { ` /software?tag=${tag } ` } >
46+ <Badge variant = " secondary" >{ tag } </Badge >
47+ </a >
4448 ))
4549 }
4650 </div >
You can’t perform that action at this time.
0 commit comments