diff --git a/.codex b/.codex new file mode 100644 index 0000000..e69de29 diff --git a/app/app.vue b/app/app.vue index 09f935b..8e7f33e 100644 --- a/app/app.vue +++ b/app/app.vue @@ -1,6 +1,7 @@ diff --git a/app/assets/css/main.css b/app/assets/css/main.css new file mode 100644 index 0000000..a461c50 --- /dev/null +++ b/app/assets/css/main.css @@ -0,0 +1 @@ +@import "tailwindcss"; \ No newline at end of file diff --git a/app/layouts/default.vue b/app/layouts/default.vue new file mode 100644 index 0000000..ac79eb1 --- /dev/null +++ b/app/layouts/default.vue @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/app/pages/index/index.vue b/app/pages/index/index.vue new file mode 100644 index 0000000..7f477a0 --- /dev/null +++ b/app/pages/index/index.vue @@ -0,0 +1,184 @@ + + + + + \ No newline at end of file diff --git a/app/pages/login/index.vue b/app/pages/login/index.vue new file mode 100644 index 0000000..b9b4da4 --- /dev/null +++ b/app/pages/login/index.vue @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/nuxt.config.ts b/nuxt.config.ts index 11a8481..91123a8 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,6 +1,12 @@ +import tailwindcss from '@tailwindcss/vite' + // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ compatibilityDate: '2025-07-15', devtools: { enabled: true }, - modules: ['@nuxt/ui'] -}) \ No newline at end of file + modules: ['@nuxt/ui'], + css: ['~/assets/css/main.css'], + vite: { + plugins: [tailwindcss()] + } +}) diff --git a/package.json b/package.json index ef03d40..041b65c 100644 --- a/package.json +++ b/package.json @@ -14,5 +14,9 @@ "nuxt": "^4.4.2", "vue": "^3.5.32", "vue-router": "^5.0.4" + }, + "devDependencies": { + "@tailwindcss/vite": "^4.2.2", + "tailwindcss": "^4.2.2" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3364d7b..0f00afe 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -20,6 +20,13 @@ importers: vue-router: specifier: ^5.0.4 version: 5.0.4(@vue/compiler-sfc@3.5.32)(vue@3.5.32(typescript@6.0.2)) + devDependencies: + '@tailwindcss/vite': + specifier: ^4.2.2 + version: 4.2.2(vite@7.3.2(jiti@2.6.1)(lightningcss@1.32.0)(terser@5.46.1)(yaml@2.8.3)) + tailwindcss: + specifier: ^4.2.2 + version: 4.2.2 packages: