Skip to content

Commit db09468

Browse files
authored
fixing alignment of Maintainer and their role (#39)
1 parent 1d6937a commit db09468

File tree

1 file changed

+36
-33
lines changed

1 file changed

+36
-33
lines changed

components/Footer.tsx

+36-33
Original file line numberDiff line numberDiff line change
@@ -28,64 +28,67 @@ export default function Footer() {
2828
</div>
2929
<div className="px-2 xl:w-[50vh] md:w-[65vh] lg:w-[50vh]">
3030
<div className="mb-10 text-white" id="contributors">
31-
<h4 className="text-dark mb-9 text-xl font-semibold">
32-
Maintainers
33-
</h4>
31+
<h4 className="text-dark mb-9 text-xl font-semibold">Maintainers</h4>
3432
<ul className="flex flex-col">
35-
<li className="flex w-full">
33+
<li className="flex items-center w-full mb-2">
3634
<a
3735
href="https://twitter.com/matte_lodi"
38-
className="text-body-color font-semibold hover:text-primary mb-2 text-md leading-loose"
36+
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose"
37+
style={{ width: '200px' }} // Fixed width for name block
3938
>
40-
Matteo Lodi{" "}
41-
<span className="font-small text-sm opacity-90 font-SpaceGrotesk sm:ml-[24px] md:ml-[48px] ml-3">
42-
Author, Advisor and Administrator{" "}
43-
</span>
39+
Matteo Lodi
4440
</a>
41+
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
42+
Author, Advisor and Administrator
43+
</span>
4544
</li>
46-
<li>
45+
<li className="flex items-center w-full mb-2">
4746
<a
4847
href="https://github.com/drosetti"
49-
className="text-body-color font-semibold hover:text-primary mb-2 inline-block text-md leading-loose"
48+
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose"
49+
style={{ width: '200px' }} // Fixed width for name block
5050
>
51-
Daniele Rosetti{" "}
52-
<span className="font-small text-sm opacity-90 font-SpaceGrotesk sm:ml-[24px] md:ml-[48px] ml-3">
53-
Administrator and Frontend Maintainer{" "}
54-
</span>
51+
Daniele Rosetti
5552
</a>
53+
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
54+
Administrator and Frontend Maintainer
55+
</span>
5656
</li>
57-
<li>
57+
<li className="flex items-center w-full mb-2">
5858
<a
5959
href="https://twitter.com/0ssig3no"
60-
className="text-body-color font-semibold hover:text-primary mb-2 inline-block text-md leading-loose"
60+
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose"
61+
style={{ width: '200px' }} // Fixed width for name block
6162
>
62-
Simone Berni{" "}
63-
<span className="font-small text-sm opacity-90 font-SpaceGrotesk sm:ml-[24px] md:ml-[48px] ml-3">
64-
Backend Maintainer{" "}
65-
</span>
63+
Simone Berni
6664
</a>
65+
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
66+
Backend Maintainer
67+
</span>
6768
</li>
68-
<li>
69+
<li className="flex items-center w-full mb-2">
6970
<a
7071
href="https://x.com/fgibertoni1"
71-
className="text-body-color font-semibold hover:text-primary mb-2 inline-block text-md leading-loose"
72+
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose"
73+
style={{ width: '200px' }} // Fixed width for name block
7274
>
73-
Federico Gibertoni{" "}
74-
<span className="font-small text-sm opacity-90 font-SpaceGrotesk sm:ml-[24px] md:ml-[48px] ml-3">
75-
Maintainer and Community Assistant{" "}
76-
</span>
75+
Federico Gibertoni
7776
</a>
77+
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
78+
Maintainer and Community Assistant
79+
</span>
7880
</li>
79-
<li>
81+
<li className="flex items-center w-full mb-2">
8082
<a
8183
href="https://twitter.com/eshaan7_"
82-
className="text-body-color font-semibold hover:text-primary mb-2 inline-block text-md leading-loose"
84+
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose"
85+
style={{ width: '200px' }} // Fixed width for name block
8386
>
84-
Eshaan Bansal{" "}
85-
<span className="ml-7 font-small text-sm opacity-90 font-SpaceGrotesk">
86-
Key Contributor{" "}
87-
</span>
87+
Eshaan Bansal
8888
</a>
89+
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
90+
Key Contributor
91+
</span>
8992
</li>
9093
</ul>
9194
</div>

0 commit comments

Comments
 (0)