Merge pull request #24 from Pinguin2001/main

fix: GitHub developer url not being clickable
This commit is contained in:
Abdenasser Elidrissi 2024-11-06 21:58:43 +01:00 committed by GitHub
commit dc07788f17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@
const APP_INFO = {
name: "NeoHtop",
developer: "Abdenasser",
github: "https://github.com/abdenasser",
github: "https://github.com/Abdenasser/neohtop",
stack: ["Tauri", "Rust", "Svelte", "TypeScript"],
};
@ -82,9 +82,17 @@
<span class="value">{APP_INFO.name}</span>
</div>
<div class="detail-row">
<span class="label">developer</span>
<span class="label">source</span>
<span class="separator">::</span>
<span class="value">{APP_INFO.github}</span>
<a
href={APP_INFO.github}
class="value"
target="_blank"
rel="noopener noreferrer"
>
{APP_INFO.github}
</a>
</div>
<div class="detail-row">
<span class="label">stack</span>