Skip to content

Commit

Permalink
add graphics to sponsors
Browse files Browse the repository at this point in the history
  • Loading branch information
christophertorres1 committed Jan 15, 2024
1 parent 1aeaf80 commit ff46be8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 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 @@ -38,6 +40,9 @@ import witiLogo from '../graphics/sponsors/witi.webp';
<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 +95,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 ff46be8

Please sign in to comment.