├── .editorconfig ├── .env.example ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── README.md ├── app ├── app.config.ts ├── app.vue ├── assets │ └── css │ │ └── main.css ├── components │ ├── NotificationsSlideover.vue │ ├── TeamsMenu.vue │ ├── UserMenu.vue │ ├── customers │ │ ├── AddModal.vue │ │ └── DeleteModal.vue │ ├── home │ │ ├── HomeChart.client.vue │ │ ├── HomeChart.server.vue │ │ ├── HomeDateRangePicker.vue │ │ ├── HomePeriodSelect.vue │ │ ├── HomeSales.vue │ │ └── HomeStats.vue │ ├── inbox │ │ ├── InboxList.vue │ │ └── InboxMail.vue │ └── settings │ │ └── MembersList.vue ├── composables │ └── useDashboard.ts ├── error.vue ├── layouts │ └── default.vue ├── pages │ ├── customers.vue │ ├── inbox.vue │ ├── index.vue │ ├── settings.vue │ └── settings │ │ ├── index.vue │ │ ├── members.vue │ │ ├── notifications.vue │ │ └── security.vue ├── types │ └── index.d.ts └── utils │ └── index.ts ├── eslint.config.mjs ├── nuxt.config.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── public └── favicon.ico ├── renovate.json ├── server └── api │ ├── customers.ts │ ├── mails.ts │ ├── members.ts │ └── notifications.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | # Public URL, used for OG Image when running nuxt generate 2 | NUXT_PUBLIC_SITE_URL= 3 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/README.md -------------------------------------------------------------------------------- /app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/app.config.ts -------------------------------------------------------------------------------- /app/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/app.vue -------------------------------------------------------------------------------- /app/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/assets/css/main.css -------------------------------------------------------------------------------- /app/components/NotificationsSlideover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/NotificationsSlideover.vue -------------------------------------------------------------------------------- /app/components/TeamsMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/TeamsMenu.vue -------------------------------------------------------------------------------- /app/components/UserMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/UserMenu.vue -------------------------------------------------------------------------------- /app/components/customers/AddModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/customers/AddModal.vue -------------------------------------------------------------------------------- /app/components/customers/DeleteModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/customers/DeleteModal.vue -------------------------------------------------------------------------------- /app/components/home/HomeChart.client.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/home/HomeChart.client.vue -------------------------------------------------------------------------------- /app/components/home/HomeChart.server.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/home/HomeChart.server.vue -------------------------------------------------------------------------------- /app/components/home/HomeDateRangePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/home/HomeDateRangePicker.vue -------------------------------------------------------------------------------- /app/components/home/HomePeriodSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/home/HomePeriodSelect.vue -------------------------------------------------------------------------------- /app/components/home/HomeSales.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/home/HomeSales.vue -------------------------------------------------------------------------------- /app/components/home/HomeStats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/home/HomeStats.vue -------------------------------------------------------------------------------- /app/components/inbox/InboxList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/inbox/InboxList.vue -------------------------------------------------------------------------------- /app/components/inbox/InboxMail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/inbox/InboxMail.vue -------------------------------------------------------------------------------- /app/components/settings/MembersList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/components/settings/MembersList.vue -------------------------------------------------------------------------------- /app/composables/useDashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/composables/useDashboard.ts -------------------------------------------------------------------------------- /app/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/error.vue -------------------------------------------------------------------------------- /app/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/layouts/default.vue -------------------------------------------------------------------------------- /app/pages/customers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/pages/customers.vue -------------------------------------------------------------------------------- /app/pages/inbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/pages/inbox.vue -------------------------------------------------------------------------------- /app/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/pages/index.vue -------------------------------------------------------------------------------- /app/pages/settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/pages/settings.vue -------------------------------------------------------------------------------- /app/pages/settings/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/pages/settings/index.vue -------------------------------------------------------------------------------- /app/pages/settings/members.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/pages/settings/members.vue -------------------------------------------------------------------------------- /app/pages/settings/notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/pages/settings/notifications.vue -------------------------------------------------------------------------------- /app/pages/settings/security.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/pages/settings/security.vue -------------------------------------------------------------------------------- /app/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/types/index.d.ts -------------------------------------------------------------------------------- /app/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/app/utils/index.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/renovate.json -------------------------------------------------------------------------------- /server/api/customers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/server/api/customers.ts -------------------------------------------------------------------------------- /server/api/mails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/server/api/mails.ts -------------------------------------------------------------------------------- /server/api/members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/server/api/members.ts -------------------------------------------------------------------------------- /server/api/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/server/api/notifications.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuxt-ui-templates/dashboard/HEAD/tsconfig.json --------------------------------------------------------------------------------