feat(frontend): add wip navigation bar#89
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a first-pass (WIP) sidebar navigation and top AppBar/breadcrumb scaffold to the (app) area of the SvelteKit frontend.
Changes:
- Introduces a
Navigationsidebar component with grouped links plus header/footer sections. - Adds new navigation header/footer components (avatar + identity + logout button).
- Updates
(app)/+layout.svelteto render the sidebar and anAppBarwith breadcrumb-like context.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 6 comments.
| File | Description |
|---|---|
| packages/frontend/src/routes/(app)/components/navigation/Navigation.svelte | New sidebar navigation component rendering grouped items, header, content, and footer. |
| packages/frontend/src/routes/(app)/components/navigation/Header.svelte | New navigation header UI (avatar + hard-coded identity placeholder). |
| packages/frontend/src/routes/(app)/components/navigation/Footer.svelte | New navigation footer UI (avatar + hard-coded user placeholder + logout icon button). |
| packages/frontend/src/routes/(app)/+layout.svelte | Wraps app pages with sidebar + AppBar breadcrumb derived from nav items. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| </div> | ||
| </div> | ||
|
|
||
| <button class="btn-icon"> |
248cdb1 to
3f9470f
Compare
a9ex
approved these changes
May 16, 2026
Member
a9ex
left a comment
There was a problem hiding this comment.
OK for the white jury; don't forget to take into account the comments on the hardcoded IDs
3f9470f to
f55de0a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR adds a simple and not fully featured navigation bar.
Context / Motivation
Useful when your app has multiple pages 😅
Screenshots
Checklist
Additional Notes