Skip to content

Commit

Permalink
fix: Buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekCornerGH authored Jul 1, 2024
1 parent 0bf6218 commit 9f31dff
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,22 @@ function HomepageHeader() {
</Heading>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<div className={styles.buttons}>
<Link
className="button button--secondary button--lg"
href="/docs/getting-started/discord"
>
Get started
</Link>
{" "}
<Link
className="button button--secondary button--lg"
href="/maps"
>
Take a look at our maps
</Link>
<div>
<Link
className="button button--secondary button--lg"
href="/docs/getting-started/discord"
>
Get started
</Link>
</div>
<div>
<Link
className="button button--secondary button--lg"
href="/maps"
>
Take a look at our maps
</Link>
</div>
</div>
</div>
</header>
Expand Down

0 comments on commit 9f31dff

Please sign in to comment.