-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Felix Alejandro Zelaya Orellana
committed
Dec 13, 2023
1 parent
27b9636
commit b61cb1b
Showing
5 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |