Skip to content

Commit

Permalink
fixing alignment of Maintainer and their role (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
pankaj-bind authored Jan 9, 2025
1 parent 1d6937a commit db09468
Showing 1 changed file with 36 additions and 33 deletions.
69 changes: 36 additions & 33 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,64 +28,67 @@ export default function Footer() {
</div>
<div className="px-2 xl:w-[50vh] md:w-[65vh] lg:w-[50vh]">
<div className="mb-10 text-white" id="contributors">
<h4 className="text-dark mb-9 text-xl font-semibold">
Maintainers
</h4>
<h4 className="text-dark mb-9 text-xl font-semibold">Maintainers</h4>
<ul className="flex flex-col">
<li className="flex w-full">
<li className="flex items-center w-full mb-2">
<a
href="https://twitter.com/matte_lodi"
className="text-body-color font-semibold hover:text-primary mb-2 text-md leading-loose"
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose"
style={{ width: '200px' }} // Fixed width for name block
>
Matteo Lodi{" "}
<span className="font-small text-sm opacity-90 font-SpaceGrotesk sm:ml-[24px] md:ml-[48px] ml-3">
Author, Advisor and Administrator{" "}
</span>
Matteo Lodi
</a>
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
Author, Advisor and Administrator
</span>
</li>
<li>
<li className="flex items-center w-full mb-2">
<a
href="https://github.com/drosetti"
className="text-body-color font-semibold hover:text-primary mb-2 inline-block text-md leading-loose"
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose"
style={{ width: '200px' }} // Fixed width for name block
>
Daniele Rosetti{" "}
<span className="font-small text-sm opacity-90 font-SpaceGrotesk sm:ml-[24px] md:ml-[48px] ml-3">
Administrator and Frontend Maintainer{" "}
</span>
Daniele Rosetti
</a>
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
Administrator and Frontend Maintainer
</span>
</li>
<li>
<li className="flex items-center w-full mb-2">
<a
href="https://twitter.com/0ssig3no"
className="text-body-color font-semibold hover:text-primary mb-2 inline-block text-md leading-loose"
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose"
style={{ width: '200px' }} // Fixed width for name block
>
Simone Berni{" "}
<span className="font-small text-sm opacity-90 font-SpaceGrotesk sm:ml-[24px] md:ml-[48px] ml-3">
Backend Maintainer{" "}
</span>
Simone Berni
</a>
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
Backend Maintainer
</span>
</li>
<li>
<li className="flex items-center w-full mb-2">
<a
href="https://x.com/fgibertoni1"
className="text-body-color font-semibold hover:text-primary mb-2 inline-block text-md leading-loose"
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose"
style={{ width: '200px' }} // Fixed width for name block
>
Federico Gibertoni{" "}
<span className="font-small text-sm opacity-90 font-SpaceGrotesk sm:ml-[24px] md:ml-[48px] ml-3">
Maintainer and Community Assistant{" "}
</span>
Federico Gibertoni
</a>
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
Maintainer and Community Assistant
</span>
</li>
<li>
<li className="flex items-center w-full mb-2">
<a
href="https://twitter.com/eshaan7_"
className="text-body-color font-semibold hover:text-primary mb-2 inline-block text-md leading-loose"
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose"
style={{ width: '200px' }} // Fixed width for name block
>
Eshaan Bansal{" "}
<span className="ml-7 font-small text-sm opacity-90 font-SpaceGrotesk">
Key Contributor{" "}
</span>
Eshaan Bansal
</a>
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
Key Contributor
</span>
</li>
</ul>
</div>
Expand Down

0 comments on commit db09468

Please sign in to comment.