Skip to content

Commit

Permalink
sponsors graphics (#33)
Browse files Browse the repository at this point in the history
* add graphics to sponsors

* update witi link
  • Loading branch information
christophertorres1 authored Jan 16, 2024
1 parent 4df7be2 commit 286ab2a
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions src/components/Sponsors.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
import { Image } from 'astro:assets';
import clouds from '../graphics/clouds_stars.svg';
import sheep from '../graphics/sheep.svg';
import citrisLogo from '../graphics/sponsors/citris.webp';
import wealthfrontLogo from '../graphics/sponsors/wealthfront.webp';
import bstfLogo from '../graphics/sponsors/bstf.webp';
Expand Down Expand Up @@ -31,13 +33,13 @@ import witiLogo from '../graphics/sponsors/witi.webp';
<a href="https://www.ffwd.org/" target="_blank">
<Image src={ffwdLogo} alt="Fast Forward" />
</a>
<a
href="https://citris-uc.org/research/edge-in-tech-initiative/"
target="_blank"
>
<a href="https://edge.berkeley.edu" target="_blank">
<Image src={witiLogo} alt="Women in Tech Initiaive" />
</a>
</div>

<Image class="clouds" src={clouds} alt="clouds and stars" />
<Image class="sheep" src={sheep} alt="sheep" />
</section>

<style lang="scss">
Expand Down Expand Up @@ -90,5 +92,19 @@ import witiLogo from '../graphics/sponsors/witi.webp';
flex-shrink: 0;
}
}

.clouds {
position: absolute;
left: 0;
bottom: -6rem;
z-index: -1;
}

.sheep {
position: absolute;
right: 0;
top: 4rem;
z-index: -1;
}
}
</style>

0 comments on commit 286ab2a

Please sign in to comment.