More navigation fixes
This commit is contained in:
@ -1,5 +1,18 @@
|
||||
<script>
|
||||
import Banner from '../../components/Banner.svelte'
|
||||
|
||||
let services = [
|
||||
{
|
||||
name: "Status",
|
||||
link: "https://quartznet.info/status",
|
||||
description: "Server monitoring and troubleshooting",
|
||||
},
|
||||
{
|
||||
name: "Gitea",
|
||||
link: "https://quartznet.info/git",
|
||||
description: "Software development version control"
|
||||
}
|
||||
]
|
||||
</script>
|
||||
|
||||
<style>
|
||||
@ -46,18 +59,11 @@
|
||||
<section>
|
||||
<h2>Services</h2>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://quartznet.info/status">Status</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://quartznet.info/music/">MyMPD</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://quartznet.info/media/web">Jellyfin</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://quartznet.info/git">Gitea</a>
|
||||
</li>
|
||||
{#each services as service}
|
||||
<li>
|
||||
<a href="{service.link}">{service.name}</a>
|
||||
</li>
|
||||
{/each}
|
||||
</ul>
|
||||
</section>
|
||||
</main>
|
||||
|
@ -35,4 +35,4 @@
|
||||
</div>
|
||||
<button class="btn btn-primary" type="submit">Sign in</button>
|
||||
</form>
|
||||
</main>
|
||||
</main>
|
||||
|
Reference in New Issue
Block a user