Skip to content

Commit

Permalink
feat(sponsor): heartbeat, unif, and bualoy parinya (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
shalluv authored Jan 15, 2024
1 parent d5a5c41 commit e1ce83c
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/assets/icons/bualoy-parinya.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/icons/heartbeat.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/icons/unif.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 19 additions & 1 deletion src/components/Sponsor.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ import camphub from "@/assets/icons/camphub.svg";
import centralretail from "@/assets/icons/centralretail.svg";
import gulf from "@/assets/icons/gulf.svg";
import anywheel from "@/assets/icons/anywheel.svg";
import heartbeat from "@/assets/icons/heartbeat.svg";
import unif from "@/assets/icons/unif.svg";
import bualoyParinya from "@/assets/icons/bualoy-parinya.svg";
---

<div class="flex flex-col items-center justify-center gap-2 text-center">
<p class="font-medium md:ml-auto">Sponsored by</p>
<div class="grid grid-cols-2 items-center gap-8">
<div class="grid grid-cols-2 items-center gap-8 md:grid-cols-4">
<div
class="flex aspect-square w-28 items-center justify-center bg-white p-2"
>
Expand All @@ -30,5 +33,20 @@ import anywheel from "@/assets/icons/anywheel.svg";
>
<Image src={anywheel} alt="Anywheel" />
</div>
<div
class="flex aspect-square w-28 items-center justify-center bg-white p-2"
>
<Image src={heartbeat} alt="HeartBeat" />
</div>
<div
class="flex aspect-square w-28 items-center justify-center bg-white p-2"
>
<Image src={unif} alt="Unif" />
</div>
<div
class="flex aspect-square w-28 items-center justify-center bg-white p-2"
>
<Image src={bualoyParinya} alt="Bualoy Parinya" />
</div>
</div>
</div>

0 comments on commit e1ce83c

Please sign in to comment.