diff --git a/app/app.vue b/app/app.vue index 7e2a9a6..155a718 100644 --- a/app/app.vue +++ b/app/app.vue @@ -10,6 +10,14 @@ const { data: files } = useLazyFetch('/api/search.json', { server: false, }) +const links = [ + { + label: 'Changelog', + icon: 'solar:notes-minimalistic-bold-duotone', + to: '/changelog', + }, +] + const twitterSite = appConfig.docs.socials?.twitter || appConfig.docs.socials?.x || undefined const browserTabIcon = appConfig.docs?.logo || undefined @@ -43,7 +51,7 @@ provide('navigation', navigation) - + diff --git a/app/components/ChangelogItem.vue b/app/components/ChangelogItem.vue new file mode 100644 index 0000000..fe82d08 --- /dev/null +++ b/app/components/ChangelogItem.vue @@ -0,0 +1,84 @@ + + + + + diff --git a/app/pages/changelog.vue b/app/pages/changelog.vue new file mode 100644 index 0000000..a2305e2 --- /dev/null +++ b/app/pages/changelog.vue @@ -0,0 +1,103 @@ + + + diff --git a/bun.lockb b/bun.lockb index fdfa49e..63e4142 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/docs/.config/docs.yaml b/docs/.config/docs.yaml index 09a324b..d6c4c08 100644 --- a/docs/.config/docs.yaml +++ b/docs/.config/docs.yaml @@ -3,7 +3,7 @@ name: 'UnDocs' shortDescription: 'Docs, made easy.' description: 'Elegant documentation tooling for UnJS ecosystem.' -github: 'unjs/docs' +github: 'unjs/undocs' url: 'https://undocs.pages.dev' redirects: '/docs': '/docs/getting-started' diff --git a/package.json b/package.json index c5365f8..048e790 100644 --- a/package.json +++ b/package.json @@ -43,6 +43,7 @@ "c12": "^1.11.1", "citty": "^0.1.6", "consola": "^3.2.3", + "date-fns": "^3.3.1", "defu": "^6.1.4", "is-buffer": "^2.0.5", "nitropack": "^2.9.7",