Add banner to page (#16908)

This commit is contained in:
Ryan M. Shea 2021-04-28 08:14:25 -06:00 committed by GitHub
parent a7a671b3aa
commit 7f1c1fe6a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

View File

@ -106,6 +106,21 @@ function Home() {
<section className={styles.features}>
<div className="container">
<div className="row cards__container">
<div class="alert alert--primary" role="alert">
<b>Announcing the Solana Season Hackathon</b>
<br />
Jumpstart your next project on Solana & join the fastest growing ecosystem in crypto
<br />
<a
href="https://solana.com/solanaszn"
rel="noopener noreferrer"
target="_blank"
>
<button class="button button--outline button--secondary">
Register Now
</button>
</a>
</div>
{features.map((props, idx) => (
<Feature key={idx} {...props} />
))}