We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90f125b commit 1c405a9Copy full SHA for 1c405a9
src/components/ProjectCard.astro
@@ -65,9 +65,11 @@ if (showUserInfo) {
65
style={iconPicture ? `background-image: url(${iconPicture});` : ""}>
66
</span>
67
<div>
68
- <h1 class="pb-1 text-lg font-bold text-black dark:text-white">
69
- {obtainedMod.title}
70
- </h1>
+ <h1 class="pb-1 text-lg font-bold text-black hover:text-gray-600 dark:text-white dark:hover:text-gray-300">
+ <a href=`https://modrinth.com/project/${submission.modrinth_id}`>
+ {obtainedMod.title}
71
+ </a>
72
+ </h1>
73
{showUserInfo && (<div> By:
74
{projectAuthors.length > 0
75
? projectAuthors.map((author) => (
0 commit comments