docs: fix fixed banner layout

This commit is contained in:
Trent Nelson 2021-05-12 21:16:11 -06:00 committed by mergify[bot]
parent a821c4d57f
commit 248f2309ef
1 changed files with 13 additions and 11 deletions

View File

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