Skip to content

Commit

Permalink
feat(frontend): add placeholder items to nav
Browse files Browse the repository at this point in the history
  • Loading branch information
jmiguelv committed Jul 8, 2024
1 parent fbe69a7 commit c7bd5ff
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions frontend/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
<nav>
<BaseLink href="/" class="title">{config.title}</BaseLink>
<ul>
<li>About</li>
<li>Guide</li>
{#if data.debug}
<li><BaseLink href="/_qa">QA</BaseLink></li>
{/if}
Expand Down Expand Up @@ -66,6 +68,10 @@
& ul {
list-style: none;
& li {
display: inline-flex;
}
}
}
Expand Down

0 comments on commit c7bd5ff

Please sign in to comment.