Skip to content

Commit 7904d7f

Browse files
feat: add contributor Matteo Zenti (#305)
* feat: add contributor Matteo Zenti * style(about): make credits section better, adjust colors * chore: biome
1 parent dac5fbc commit 7904d7f

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

src/app/about.tsx

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,18 @@ function RouteComponent() {
2323
</p>
2424
</div>
2525

26-
<div>
26+
<div className="space-y-2">
2727
<h3>Partecipanti e collaboratori:</h3>
2828
<ul className="flex list-disc flex-col gap-1 py-1 pl-4">
2929
{CREDITS.map((credit) => (
3030
<li key={credit.name}>
3131
<p className="flex items-center justify-start">
3232
{credit.name}
33-
{credit.role && <span>&nbsp;({credit.role})</span>}
33+
{credit.role && (
34+
<span className="font-light text-slate-700 dark:text-slate-400">
35+
&nbsp;{credit.role}
36+
</span>
37+
)}
3438
{credit.tgLink && (
3539
<>
3640
&nbsp;
@@ -48,6 +52,11 @@ function RouteComponent() {
4852
</li>
4953
))}
5054
</ul>
55+
<p className="text-slate-700 text-xs italic dark:text-slate-400">
56+
Per Content si intendono contributori che hanno fornito graduatorie
57+
mancanti (con link originali o dati grezzi) o altri dati da
58+
visualizzare.
59+
</p>
5160
</div>
5261

5362
<div className="space-y-1">
@@ -72,8 +81,10 @@ function RouteComponent() {
7281
</p>
7382
</div>
7483

75-
<div className="flex items-center justify-between">
76-
<p className="opacity-60">Versione: {APP_VERSION}</p>
84+
<div className="flex items-center justify-between max-sm:flex-col max-sm:items-start">
85+
<p className="text-slate-800 dark:text-slate-300">
86+
Versione: {APP_VERSION}
87+
</p>
7788
<p>
7889
Sviluppato con amore da{" "}
7990
<a

src/utils/constants.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,9 @@ export const CREDITS: Credit[] = [
5959
role: "Designer",
6060
tgLink: "https://t.me/giovannimalausa",
6161
},
62+
{
63+
name: "Matteo Zenti",
64+
role: "Content",
65+
tgLink: "https://t.me/matteo_zenti",
66+
},
6267
]

0 commit comments

Comments
 (0)