Enlarge star hint text and add GitHub repo hyperlink

This commit is contained in:
Xisheng-Zhao
2026-06-08 19:18:03 +08:00
parent bd26392536
commit a936271de9
2 changed files with 9 additions and 4 deletions
+6 -1
View File
@@ -641,7 +641,12 @@ export default function App() {
<a className="button primary" href={release.releasesUrl}>{t.download.latest}</a>
<a className="button secondary" href={release.githubUrl}>{t.download.source}</a>
</div>
<p className="star-hint">{t.download.star}</p>
<p className="star-hint">
{lang === "en"
? <>Like the app? Give us a star on <a href={release.githubUrl} target="_blank" rel="noopener">GitHub</a> it means a lot to the maintainers.</>
: <> app <a href={release.githubUrl} target="_blank" rel="noopener">GitHub</a> Star </>
}
</p>
</motion.div>
</section>