Skip to content

Commit

Permalink
fix sponsors logos
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Alejandro Zelaya Orellana committed Dec 13, 2023
1 parent 27b9636 commit b61cb1b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
Binary file removed src/assets/images/emi-logo.png
Binary file not shown.
Binary file added src/assets/images/jala-logo.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 added src/assets/images/jb-logo.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 added src/assets/images/pepsi-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 7 additions & 3 deletions src/components/SponsorsSection.astro
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
---
import { Image } from "astro:assets";
import emiLogo from "../assets/images/emi-logo.png";
import jetbrainsLogo from "../assets/images/jb-logo.png";
import jalaLogo from "../assets/images/jala-logo.png";
import pepsiLogo from "../assets/images/pepsi-logo.png";
---

<section class="py-20">
<h2 class="text-center text-3xl font-medium leading-normal text-[black]">
Sponsors
</h2>
<div class="mt-16 flex items-center justify-center">
<Image src={emiLogo} alt="sponsors img" loading="lazy" />
<div class="mt-16 flex items-center justify-around">
<Image src={jetbrainsLogo} alt="sponsors img" loading="lazy" class="w-64" />
<Image src={jalaLogo} alt="sponsors img" loading="lazy" class="w-64" />
<Image src={pepsiLogo} alt="sponsors img" loading="lazy" class="w-64" />
</div>
</section>

0 comments on commit b61cb1b

Please sign in to comment.