Skip to content

Commit

Permalink
Add id attributes to index page elements (#114)
Browse files Browse the repository at this point in the history
to allow linking to them
  • Loading branch information
GeckoEidechse authored Oct 26, 2024
1 parent 11a99ba commit 7b7f226
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ import Roadmap from "../components/Roadmap.astro";
</div>

<div class="pane" id="main">
<div class="section">Installation</div>
<div class="section" id="installation">Installation</div>
<Installers />
</div>

<div class="pane dark">
<div class="pane dark" id="contributors">
<div class="section">Contributors</div>
<Contributors type={ContributorType.CORE} />
<br style="font-size: 2rem;" />
Expand All @@ -84,15 +84,15 @@ import Roadmap from "../components/Roadmap.astro";
</div>
</div>

<div class="pane">
<div class="pane" id="roadmap">
<div class="section">Roadmap</div>
<p style="text-align: center">
Our community is always working on new features and improvements for Northstar.
</p>
<Roadmap />
</div>

<div class="pane dark">
<div class="pane dark" id="support">
<div class="section">Support</div>
<p style="text-align: center" class="supporttext">
If you're having issues with running or setting up the Northstar
Expand Down

0 comments on commit 7b7f226

Please sign in to comment.