Skip to content

Commit

Permalink
[update] current sponsors (#50)
Browse files Browse the repository at this point in the history
* update to current sponsors

* update text
  • Loading branch information
jinkang-0 committed Feb 12, 2024
1 parent a69e27a commit 2ae900b
Show file tree
Hide file tree
Showing 14 changed files with 28 additions and 38 deletions.
12 changes: 7 additions & 5 deletions src/components/Button.astro
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,14 @@ if (variant === 'menu') classes.push('menu');
a.primary {
background-color: colors.$primary;

&:hover {
background-color: $primary-hover;
}
&:not(.disabled) {
&:hover {
background-color: $primary-hover;
}

&:active {
background-color: $primary-pressed;
&:active {
background-color: $primary-pressed;
}
}
}
</style>
11 changes: 5 additions & 6 deletions src/components/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,11 @@ import Brand from './Brand.astro';
to tackle social challenges
</h1>
<article>
<Button variant="primary" href="http://tinyurl.com/hackforimpactregister">
<p class="btn-text">Register now!</p>
<Image src={redirectArrow} alt="external" />
<Button variant="primary">
<p class="btn-text">Applications are closed!</p>
</Button>
<span>
Registration will close Feb. 16th. Follow
Follow

<a
href="https://www.instagram.com/calblueprint/"
Expand All @@ -42,7 +41,7 @@ import Brand from './Brand.astro';
referrerpolicy="no-referrer">@calhacks</a
>

on Instagram for updates!
on Instagram for future events and updates!
</span>
</article>

Expand Down Expand Up @@ -226,7 +225,7 @@ import Brand from './Brand.astro';
.bear-right {
position: absolute;
right: -$offset-right;
top: 50%;
top: 55%;
transform: translate(
calc(25px + clamp(#{-$offset-right}, -12vw, 0px)),
calc(-160px - 50%)
Expand Down
5 changes: 0 additions & 5 deletions src/components/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { motion, AnimatePresence } from 'framer-motion';
import styles from './style.module.scss';
import logo from '../../graphics/tentative logo.svg';
import { useEffect, useRef } from 'react';
import Button from '../Button';

interface Link {
name: string;
Expand Down Expand Up @@ -56,10 +55,6 @@ export default function NavBar({ links }: Props) {
<h5>{l.name}</h5>
</a>
))}
{/* registration button */}
<Button variant="menu" href="https://tinyurl.com/hackforimpactregister">
REGISTER
</Button>
</section>

{/* backdrop */}
Expand Down
38 changes: 16 additions & 22 deletions src/components/Sponsors.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,33 @@
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';
import notionLogo from '../graphics/sponsors/notion.webp';
import ffwdLogo from '../graphics/sponsors/ffwd.webp';
import edgeLogo from '../graphics/sponsors/edge.webp';
import twoBttnsLogo from '../graphics/sponsors/new_2bttns.webp';
import twelveLabsLogo from '../graphics/sponsors/new_twelvelabs.webp';
import hackerEarthLogo from '../graphics/sponsors/new_hackerearth.webp';
import vespaLogo from '../graphics/sponsors/new_vespa.webp';
---

<section>
<div class="header-container">
<h4 id="sponsors">SPONSORS & PARTNERS</h4>
<h3>A round of applause for our <b>past sponsors</b></h3>
<p>Stay tuned — Hack for Impact sponsors will be released soon!</p>
<h3>
A round of applause for our <b>sponsors</b>, who make all of this
possible.
</h3>
</div>

<div class="sponsors-container">
<a href="https://citris-uc.org/" target="_blank">
<Image src={citrisLogo} alt="CITRIS and the Banatao Institute" />
<a href="https://www.2bttns.com/" target="_blank">
<Image src={twoBttnsLogo} alt="2bttns" />
</a>
<a href="https://www.wealthfront.com/" target="_blank">
<Image src={wealthfrontLogo} alt="Wealthfront" />
<a href="https://www.hackerearth.com/" target="_blank">
<Image src={hackerEarthLogo} alt="HackerEarth" />
</a>
<a href="https://techfund.berkeley.edu/home" target="_blank">
<Image src={bstfLogo} alt="Berkeley Student Technology Fund" />
<a href="https://twelvelabs.io/" target="_blank">
<Image src={twelveLabsLogo} alt="Twelve Labs" />
</a>
<a href="https://www.notion.so/product" target="_blank">
<Image src={notionLogo} alt="Notion" />
</a>
<a href="https://www.ffwd.org/" target="_blank">
<Image src={ffwdLogo} alt="Fast Forward" />
</a>
<a href="https://edge.berkeley.edu" target="_blank">
<Image src={edgeLogo} alt="Edge in Tech Initiaive" />
<a href="https://vespa.ai/" target="_blank">
<Image src={vespaLogo} alt="Vespa" />
</a>
</div>

Expand Down
Binary file removed src/graphics/sponsors/bstf.webp
Binary file not shown.
Binary file removed src/graphics/sponsors/citris.webp
Binary file not shown.
Binary file removed src/graphics/sponsors/edge.webp
Binary file not shown.
Binary file removed src/graphics/sponsors/ffwd.webp
Binary file not shown.
Binary file added src/graphics/sponsors/new_2bttns.webp
Binary file not shown.
Binary file added src/graphics/sponsors/new_hackerearth.webp
Binary file not shown.
Binary file added src/graphics/sponsors/new_twelvelabs.webp
Binary file not shown.
Binary file added src/graphics/sponsors/new_vespa.webp
Binary file not shown.
Binary file removed src/graphics/sponsors/notion.webp
Binary file not shown.
Binary file removed src/graphics/sponsors/wealthfront.webp
Binary file not shown.

0 comments on commit 2ae900b

Please sign in to comment.