Skip to content

Commit

Permalink
Merge pull request #180 from nwplus/banner
Browse files Browse the repository at this point in the history
  • Loading branch information
meleongg authored Nov 21, 2023
2 parents 9bfa8aa + 3f26640 commit 018064c
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions components/Banner.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import styled from 'styled-components'
import styled from 'styled-components';

const BannerContainer = styled.div`
background: linear-gradient(92.58deg, #0defe1 0%, #78ff96 100%);
Expand All @@ -18,23 +18,24 @@ const BannerContainer = styled.div`
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.
nwHacks 2024 is not currently accepting applications. The application form
will open on November 28th, 2023.
</BannerText>
</BannerContainer>
)
);

export default Banner
export default Banner;

0 comments on commit 018064c

Please sign in to comment.