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
45 changes: 45 additions & 0 deletions src/img/partners/janestreet.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/img/partners/nie.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/img/partners/nie.webp
Binary file not shown.
Binary file added src/img/partners/ntu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
74 changes: 0 additions & 74 deletions src/img/partners/okx.svg

This file was deleted.

22 changes: 0 additions & 22 deletions src/img/partners/revenuecat.svg

This file was deleted.

Binary file removed src/img/partners/sutd.webp
Binary file not shown.
9 changes: 0 additions & 9 deletions src/img/partners/yubico.svg

This file was deleted.

20 changes: 10 additions & 10 deletions src/pages/partners.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ import {
<main class="flex justify-center flex-wrap mx-5 gap-x-4 mb-4">
{
curr_partners.map((partner) => (
<div class="bg-slate-900 max-w-xs w-full rounded-xl p-5 mt-5 border border-slate-700">
<a class="float-right" href={partner.website} target="_blank" rel="noopener noreferrer">
<div class="bg-slate-900 max-w-xs w-full rounded-xl p-5 mt-5 border border-slate-700 flex flex-col">
<a class="self-end" href={partner.website} target="_blank" rel="noopener noreferrer">
<ExternalLinkIcon className="w-5 h-5" />
</a>
Comment on lines +16 to 18
<Image src={partner.src} alt=`${partner.title}'s logo` loading=eager class="h-20 mx-auto object-contain" />
<h2 class="my-2 text-2xl">{partner.title}</h2>
<Image src={partner.src} alt=`${partner.title}'s logo` loading=eager class="h-20 w-full mx-auto object-contain" />
<h2 class="mt-6 mb-2 text-2xl">{partner.title}</h2>
<p>{partner.desc}</p>
</div>
))
Expand All @@ -27,12 +27,12 @@ import {
<main class="flex justify-center flex-wrap mx-5 gap-x-4 mb-20">
{
prev_partners.map((partner) => (
<div class="bg-slate-900 max-w-xs w-full rounded-xl p-5 mt-5 border border-slate-700">
<a class="float-right" href={partner.website} target="_blank" rel="noopener noreferrer">
<ExternalLinkIcon className="w-5 h-5" />
</a>
<Image src={partner.src} alt=`${partner.title}'s logo` loading=eager class="h-20 mx-auto object-contain" />
<h2 class="my-2 text-2xl">{partner.title}</h2>
<div class="bg-slate-900 max-w-xs w-full rounded-xl p-5 mt-5 border border-slate-700 flex flex-col">
<a class="self-end" href={partner.website} target="_blank" rel="noopener noreferrer">
<ExternalLinkIcon className="w-5 h-5" />
</a>
Comment on lines +31 to +33
<Image src={partner.src} alt=`${partner.title}'s logo` loading=eager class="h-20 w-full mx-auto object-contain" />
<h2 class="mt-6 mb-2 text-2xl">{partner.title}</h2>
<p>{partner.desc}</p>
</div>
))
Expand Down
Loading