Skip to content

Commit

Permalink
Merge pull request #28 from GDGCochabamba/fazo-dev
Browse files Browse the repository at this point in the history
change nucba logo and refactor images to be clickable
  • Loading branch information
combimauri authored Dec 13, 2023
2 parents f58420e + fa05889 commit 725e700
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 24 deletions.
Binary file modified src/assets/images/nucba-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 32 additions & 24 deletions src/components/SponsorsSection.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,37 @@ import nucbaLogo from "../assets/images/nucba-logo.png";
Sponsors
</h2>
<div class="mt-16 flex flex-wrap items-center justify-around">
<Image
src={jetbrainsLogo}
alt="Jetbrains Logo"
loading="lazy"
class="mb-20 w-52 sm:mb-4 sm:w-64 md:w-44"
/>
<Image
src={jalaLogo}
alt="Jalasoft logo"
loading="lazy"
class="mb-20 w-52 sm:mb-4 sm:w-64 md:w-44"
/>
<Image
src={pepsiLogo}
alt="Pepsi logo"
loading="lazy"
class="mb-20 w-52 sm:mb-4 sm:w-64 md:w-44"
/>
<Image
src={nucbaLogo}
alt="Nucba logo"
loading="lazy"
class="mb-4 w-52 sm:mb-4 sm:w-64 md:w-44"
/>
<a href="https://www.jetbrains.com/" target="_blank" rel="noopener">
<Image
src={jetbrainsLogo}
alt="Jetbrains Logo"
loading="lazy"
class="mb-20 w-52 sm:mb-4 sm:w-64 md:w-44"
/>
</a>
<a href="https://www.jalasoft.com/" target="_blank" rel="noopener">
<Image
src={jalaLogo}
alt="Jalasoft logo"
loading="lazy"
class="mb-20 w-52 sm:mb-4 sm:w-64 md:w-44"
/>
</a>
<a href="https://www.pepsi.com/" target="_blank" rel="noopener">
<Image
src={pepsiLogo}
alt="Pepsi logo"
loading="lazy"
class="mb-4 w-52 sm:mb-4 sm:w-64 md:w-44"
/>
</a>
<a href="https://www.nucba.com.ar/" target="_blank" rel="noopener">
<Image
src={nucbaLogo}
alt="Nucba logo"
loading="lazy"
class="mb-4 w-52 sm:mb-4 sm:w-64 md:w-44"
/>
</a>
</div>
</section>

0 comments on commit 725e700

Please sign in to comment.