Skip to content

Improve footer alignment and responsiveness #58

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 10 additions & 15 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,60 +33,55 @@ export default function Footer() {
<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 inline-block text-md leading-loose"
style={{ width: '200px' }} // Fixed width for name block
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose min-w-[150px]"
>
Matteo Lodi
</a>
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
<span className="font-small text-sm opacity-90 font-SpaceGrotesk ml-4">
Author, Advisor and Administrator
</span>
</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 inline-block text-md leading-loose"
style={{ width: '200px' }} // Fixed width for name block
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose min-w-[150px]"
>
Daniele Rosetti
</a>
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
<span className="font-small text-sm opacity-90 font-SpaceGrotesk ml-4">
Administrator and Frontend Maintainer
</span>
</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 inline-block text-md leading-loose"
style={{ width: '200px' }} // Fixed width for name block
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose min-w-[150px]"
>
Simone Berni
</a>
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
<span className="font-small text-sm opacity-90 font-SpaceGrotesk ml-4">
Backend Maintainer
</span>
</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 inline-block text-md leading-loose"
style={{ width: '200px' }} // Fixed width for name block
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose min-w-[150px]"
>
Federico Gibertoni
</a>
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
<span className="font-small text-sm opacity-90 font-SpaceGrotesk ml-4">
Maintainer and Community Assistant
</span>
</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 inline-block text-md leading-loose"
style={{ width: '200px' }} // Fixed width for name block
className="text-body-color font-semibold hover:text-primary inline-block text-md leading-loose min-w-[150px]"
>
Eshaan Bansal
</a>
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
<span className="font-small text-sm opacity-90 font-SpaceGrotesk ml-4">
Key Contributor
</span>
</li>
Expand Down