diff --git a/nuxt/.gitignore b/nuxt/.gitignore
new file mode 100644
index 0000000..4a7f73a
--- /dev/null
+++ b/nuxt/.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/nuxt/README.md b/nuxt/README.md
new file mode 100644
index 0000000..25b5821
--- /dev/null
+++ b/nuxt/README.md
@@ -0,0 +1,75 @@
+# Nuxt Minimal Starter
+
+Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
+
+## Setup
+
+Make sure to install dependencies:
+
+```bash
+# npm
+npm install
+
+# pnpm
+pnpm install
+
+# yarn
+yarn install
+
+# bun
+bun install
+```
+
+## Development Server
+
+Start the development server on `http://localhost:3000`:
+
+```bash
+# npm
+npm run dev
+
+# pnpm
+pnpm dev
+
+# yarn
+yarn dev
+
+# bun
+bun run dev
+```
+
+## Production
+
+Build the application for production:
+
+```bash
+# npm
+npm run build
+
+# pnpm
+pnpm build
+
+# yarn
+yarn build
+
+# bun
+bun run build
+```
+
+Locally preview production build:
+
+```bash
+# npm
+npm run preview
+
+# pnpm
+pnpm preview
+
+# yarn
+yarn preview
+
+# bun
+bun run preview
+```
+
+Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
diff --git a/vue/src/App.vue b/nuxt/app.vue
similarity index 96%
rename from vue/src/App.vue
rename to nuxt/app.vue
index f4e0426..5fa286f 100644
--- a/vue/src/App.vue
+++ b/nuxt/app.vue
@@ -13,7 +13,7 @@
-
-
-
diff --git a/vue/src/main.js b/vue/src/main.js
deleted file mode 100644
index 1b8a7ff..0000000
--- a/vue/src/main.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import { createApp } from 'vue'
-import App from './App.vue'
-
-const app = createApp(App);
-app.mount('#app');
diff --git a/vue/vue.config.js b/vue/vue.config.js
deleted file mode 100644
index 910e297..0000000
--- a/vue/vue.config.js
+++ /dev/null
@@ -1,4 +0,0 @@
-const { defineConfig } = require('@vue/cli-service')
-module.exports = defineConfig({
- transpileDependencies: true
-})