Skip to content

Commit

Permalink
Merge pull request #26 from GDGCochabamba/fazo-dev
Browse files Browse the repository at this point in the history
add Sponsors section
  • Loading branch information
combimauri authored Dec 13, 2023
2 parents a88fd36 + b61cb1b commit b5841f9
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 0 deletions.
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.
17 changes: 17 additions & 0 deletions src/components/SponsorsSection.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
import { Image } from "astro:assets";
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-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>
2 changes: 2 additions & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import AboutUsSection from "../components/AboutUsSection.astro";
import ConductCode from "../components/ConductCode.astro";
import EventsSection from "../components/EventsSection.astro";
import Footer from "../components/Footer.astro";
import SponsorsSection from "../components/SponsorsSection.astro";
---

<Layout title="GDG Cochabamba">
Expand All @@ -15,6 +16,7 @@ import Footer from "../components/Footer.astro";
<AboutUsSection />
<EventsSection />
<ConductCode />
<SponsorsSection />
<Footer />
</main>
</Layout>
Expand Down

0 comments on commit b5841f9

Please sign in to comment.