alpha
Login
or
Join now
jeremy.herve.bzh
/
standard.site
forked from
standard.site/standard.site
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Standard.site landing page built in Next.js
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Merge branch 'refs/heads/dev'
author
Miguel Batres
date
4 months ago
(Feb 10, 2026, 4:35 PM -0700)
commit
dba071e3
dba071e3c7fb32a94098ccad46e32df6fb7beb73
parent
79c1edb9
79c1edb9335d61110fcca572efd0647b6be3e8d5
+1
1 changed file
Expand all
Collapse all
Unified
Split
app
data
docs-nav.ts
+1
app/data/docs-nav.ts
Reviewed
···
43
43
44
44
DOCS_NAV.forEach((section) => {
45
45
section.items.forEach((item) => {
46
46
+
if (!item.href.startsWith('/docs/')) return
46
47
const slug = item.href.replace('/docs/', '').split('/')
47
48
slugs.push(slug)
48
49
})