-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ed23ed
commit 8f2a1f6
Showing
4 changed files
with
69 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import styled from 'styled-components' | ||
|
||
const BannerContainer = styled.div` | ||
background: linear-gradient(92.58deg, #0defe1 0%, #78ff96 100%); | ||
position: absolute; | ||
z-index: 1; | ||
height: 134px; | ||
width: 100vw; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: left; | ||
padding: 20px 64px; | ||
gap: 10px; | ||
color: #2c2543; | ||
font-size: 0.8rem; | ||
@media (min-width: 768px) { | ||
padding-right: 100px; | ||
font-size: 20px; | ||
} | ||
` | ||
|
||
const BannerHeader = styled.div` | ||
font-weight: 700; | ||
` | ||
|
||
const BannerText = styled.div` | ||
font-weight: 600; | ||
` | ||
|
||
const Banner = () => ( | ||
<BannerContainer> | ||
<BannerHeader>IMPORTANT UPDATE:</BannerHeader> | ||
<BannerText> | ||
nwHacks 2024 is not currently accepting applications. The application form will open on November 20th, 2023. | ||
</BannerText> | ||
</BannerContainer> | ||
) | ||
|
||
export default Banner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters