Skip to content

Commit

Permalink
RSVP Ready (#12)
Browse files Browse the repository at this point in the history
* Finalize site for invites

* mentor link
  • Loading branch information
sirAvent authored Nov 2, 2023
1 parent c4037ed commit 84cd2a3
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 4 deletions.
Binary file modified public/favicon.ico
Binary file not shown.
File renamed without changes
Binary file added public/webjam_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/hero/hero.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ export default function HeroSection() {
<p className="text-2xl md:text-3xl lg:text-4xl">
<a
className="rounded-xl border-4 border-solid border-yellow-300 px-3 py-1 hover:bg-yellow-300 transition duration-300"
href="https://studentcouncil.ics.uci.edu/"
href="https://docs.google.com/forms/d/e/1FAIpQLScSo2MhU1ehmKB9ERKE2QQ-okO6D_BgzZWXlZt-cEo7d_mOYQ/viewform"
target="_blank"
>
Apply
</a>
{" or be a "}
<a
className="underline decoration-black hover:decoration-[#00B929] transition duration-300"
href="https://studentcouncil.ics.uci.edu/"
href="https://docs.google.com/forms/d/e/1FAIpQLSf6TAua_AGJz-svV4iHu5nUDNYT5qXT2JmHLON8txusYHuAZg/viewform"
target="_blank"
>
mentor
Expand Down
2 changes: 1 addition & 1 deletion src/components/navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function Navbar() {
<nav className={`${styles.nav} ${showNav ? "opacity-100" : "opacity-0"} place-content-center md:pl-[4rem] md:place-content-start`}>
<ul>
<a href="/">
<img src="/logo.svg" alt="ICSSC Logo" />
<img src="/webjam_logo.png" alt="WebJam 2023 Logo" />
</a>
<li>
<a href="#about">About</a>
Expand Down
18 changes: 17 additions & 1 deletion src/styles/NavBar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,27 @@
gap: 28px;

}

@keyframes shake {
25% {
transform: rotate(-10deg);
}
75% {
transform: rotate(10deg);
}
}

.nav ul:first-child a img{
height: 50px;
height: 70px;
margin-right: 10px;
}

.nav ul:first-child a img:hover{
animation: shake .3s;
}



.nav ul li {
font-size: 25px;
font-weight: 500;
Expand Down

0 comments on commit 84cd2a3

Please sign in to comment.