The desktop nav wraps to two rows because 9 items (6 primary + 3 utility) plus the logo and donate button don't fit in one line. The two-group split ("Gagnasíður" vs "Yfirlit og hjálp") adds visual complexity without helping users find what they need.
GoatCounter traffic data (late March 2026, ~5,500 pageviews) shows clear tiers:
| Page | Traffic | Nav decision |
|---|---|---|
| /fullyrdingar | 12% | Keep top-level |
| /malefni/* | ~9% combined | Keep top-level |
| /umraedan | 7% | Keep top-level |
| /raddirnar | 3% | Move to Safnið hub |
| /heimildir | 3% | Move to Safnið hub |
| /um-okkur | 2% | Move to footer only |
| /thingraedur | <2% | Move to Safnið hub |
| /vikuyfirlit | <2% (spiky) | Remove from nav; surface in /nytt feed |
ESB Vaktin Nýtt Fullyrðingar Umræðan Málefni Safnið [Styrkja]
5 items, one row, no groups, no wrapping.
/safnid/)/safnid/)A lightweight wayfinding page with live counts. Reuses data already computed in _data/home.js.
Layout: Single column (no wide_layout), max-width 720px.
Content:
--bg-surface background, --rule border-bottom separator, no shadows. Editorial style consistent with /nytt anchor slab.Data source: Reads from _data/home.js signal_stats (already computes counts for fullyrðingar, greiningar, raddir, heimildir, þingræður).
<main aria-label="Gagnasöfn"><a> elements with descriptive text_data/navigation.jsmodule.exports = {
primary: [
{ label: "Nýtt", href: "/nytt/", match: "prefix" },
{ label: "Fullyrðingar", href: "/fullyrdingar/", match: "prefix" },
{ label: "Umræðan", href: "/umraedan/", match: "prefix" },
{ label: "Málefni", href: "/malefni/", match: "prefix" },
{ label: "Safnið", href: "/safnid/", match: "prefix" },
],
};
The utility group is removed entirely. One flat list.
_includes/base.njkRemove the two-group structure (site-menu-group, site-menu-group--utility, nav-group-label). Replace with a single <ul> of primary items.
Remove .site-menu-group, .site-menu-group--utility, .nav-group-label, .nav-list--utility. Simplify .site-menu to a single flex row. The .nav-list--primary gap can increase slightly since there are fewer items.
Add "Um síðuna" to the footer links (already there). No other footer changes needed.
The hamburger menu keeps all 5 items in a single list. No group labels needed. Simpler than before.
| File | Action |
|---|---|
safnid/index.njk |
Create — Safnið hub page |
_data/navigation.js |
Modify — replace with 5-item flat list |
_includes/base.njk |
Modify — remove two-group nav structure |
assets/css/style.css |
Modify — remove utility nav CSS, simplify menu |
assets/js/mobile-nav.js |
Check — may need adjustment for single-group |