From fcb916201797112b2f9bb4d0449ddccdc07e7c46 Mon Sep 17 00:00:00 2001 From: ArthurDanjou <29738535+ArthurDanjou@users.noreply.github.com> Date: Sat, 6 Sep 2025 14:11:17 +0000 Subject: [PATCH] Initial commit Created from https://vercel.com/new --- .editorconfig | 13 + .gitignore | 24 + .npmrc | 1 + README.md | 73 + app/app.config.ts | 17 + app/app.vue | 80 + app/assets/css/main.css | 25 + app/components/AppLogo.vue | 40 + app/components/SkyBg.vue | 93 + app/pages/index.vue | 53 + eslint.config.mjs | 6 + nuxt.config.ts | 50 + package.json | 39 + pnpm-lock.yaml | 12222 +++++++++++++++++++++++++++++++++++ public/favicon.ico | Bin 0 -> 4286 bytes renovate.json | 13 + tsconfig.json | 10 + 17 files changed, 12759 insertions(+) create mode 100755 .editorconfig create mode 100644 .gitignore create mode 100644 .npmrc create mode 100644 README.md create mode 100644 app/app.config.ts create mode 100644 app/app.vue create mode 100644 app/assets/css/main.css create mode 100644 app/components/AppLogo.vue create mode 100644 app/components/SkyBg.vue create mode 100644 app/pages/index.vue create mode 100644 eslint.config.mjs create mode 100644 nuxt.config.ts create mode 100644 package.json create mode 100644 pnpm-lock.yaml create mode 100644 public/favicon.ico create mode 100644 renovate.json create mode 100644 tsconfig.json diff --git a/.editorconfig b/.editorconfig new file mode 100755 index 0000000..9142239 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# editorconfig.org +root = true + +[*] +indent_size = 2 +indent_style = space +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4a7f73a --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Nuxt dev/build outputs +.output +.data +.nuxt +.nitro +.cache +dist + +# Node dependencies +node_modules + +# Logs +logs +*.log + +# Misc +.DS_Store +.fleet +.idea + +# Local env files +.env +.env.* +!.env.example diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..c483022 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +shamefully-hoist=true \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..033e588 --- /dev/null +++ b/README.md @@ -0,0 +1,73 @@ +# Nuxt Changelog Template + +[![Nuxt UI](https://img.shields.io/badge/Made%20with-Nuxt%20UI-00DC82?logo=nuxt&labelColor=020420)](https://ui.nuxt.com) + +Use this template to create your own changelog with [Nuxt UI](https://ui.nuxt.com). + +- [Live demo](https://changelog-template.nuxt.dev/) +- [Documentation](https://ui.nuxt.com/getting-started/installation/nuxt) + + + + + + Nuxt Changelog Template + + + +## Quick Start + +```bash [Terminal] +npm create nuxt@latest -- -t github:nuxt-ui-templates/changelog +``` + +## Deploy your own + +[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fnuxt-ui-templates%2Fchangelog) + +## Config + +To customize the GitHub repository that the changelog fetches releases from, update the `repository` key in `app/app.config.ts`: + +```ts [app/app.config.ts] +// app/app.config.ts +export default defineAppConfig({ + repository: 'nuxt/ui' // Change this to your GitHub repository (e.g., 'facebook/react') +}) +``` + +## Setup + +Make sure to install the dependencies: + +```bash +pnpm install +``` + +## Development Server + +Start the development server on `http://localhost:3000`: + +```bash +pnpm dev +``` + +## Production + +Build the application for production: + +```bash +pnpm build +``` + +Locally preview production build: + +```bash +pnpm preview +``` + +Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information. + +## Renovate integration + +Install [Renovate GitHub app](https://github.com/apps/renovate/installations/select_target) on your repository and you are good to go. diff --git a/app/app.config.ts b/app/app.config.ts new file mode 100644 index 0000000..c171afd --- /dev/null +++ b/app/app.config.ts @@ -0,0 +1,17 @@ +export default defineAppConfig({ + repository: 'nuxt/ui', + ui: { + colors: { + primary: 'green', + neutral: 'slate' + }, + prose: { + li: { + base: 'break-words' + }, + a: { + base: 'break-words' + } + } + } +}) diff --git a/app/app.vue b/app/app.vue new file mode 100644 index 0000000..1154d79 --- /dev/null +++ b/app/app.vue @@ -0,0 +1,80 @@ + + +