Skip to content
Merged
Show file tree
Hide file tree
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
72 changes: 43 additions & 29 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,53 +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 and Principal Maintainer{" "}
</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://twitter.com/eshaan7_"
className="text-body-color font-semibold hover:text-primary mb-2 inline-block text-md leading-loose"
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
>
Eshaan Bansal{" "}
<span className="ml-7 font-small text-sm opacity-90 font-SpaceGrotesk">
Key Contributor{" "}
</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="ml-10 font-small text-sm opacity-90 font-SpaceGrotesk">
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://github.com/drosetti"
className="text-body-color font-semibold hover:text-primary mb-2 inline-block text-md leading-loose"
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
>
Federico Gibertoni
</a>
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
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
>
Daniele Rosetti{" "}
<span className="ml-6 font-small text-sm opacity-90 font-SpaceGrotesk">
Frontend Maintainer{" "}
</span>
Eshaan Bansal
</a>
<span className="font-small text-sm opacity-90 font-SpaceGrotesk">
Key Contributor
</span>
</li>
</ul>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function Home() {
role="alert"
>
<span className="text-xs bg-[#00ADEF] rounded-full text-white px-4 py-1.5 mr-3 text-center justify-center">
3K+
4K+
</span>{" "}
{/* link to prolly the docs where analyzers are explained */}
<span className="text-sm font-normal font-SpaceGrotesk ">
Expand All @@ -57,7 +57,7 @@ export default function Home() {
role="alert"
>
<span className="text-xs bg-[#00ADEF] rounded-full text-white px-4 py-1.5 mr-3">
300+
500+
</span>{" "}
<span className="text-sm font-SpaceGrotesk font-normal">
Forks
Expand All @@ -69,7 +69,7 @@ export default function Home() {
role="alert"
>
<span className="text-xs bg-[#00ADEF] rounded-full text-white px-4 py-1.5 mr-3">
150+
200+
</span>{" "}
<span className="text-sm font-SpaceGrotesk font-normal">
Analyzers
Expand Down