├── .github └── dependabot.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── app.vue ├── assets └── css │ └── tailwind.css ├── components ├── Header.vue ├── MobileMenu.vue ├── NewCustomers.vue ├── ProfileInfo.vue ├── RecentOrders.vue ├── Reminders.vue ├── SalesChart.vue ├── Sidebar.vue ├── SidebarItem.vue └── StatusCard.vue ├── nuxt.config.ts ├── package.json ├── public ├── cover.png ├── favicon.ico └── icon.svg ├── server └── tsconfig.json ├── tailwind.config.ts └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/app.vue -------------------------------------------------------------------------------- /assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/assets/css/tailwind.css -------------------------------------------------------------------------------- /components/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/components/Header.vue -------------------------------------------------------------------------------- /components/MobileMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/components/MobileMenu.vue -------------------------------------------------------------------------------- /components/NewCustomers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/components/NewCustomers.vue -------------------------------------------------------------------------------- /components/ProfileInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/components/ProfileInfo.vue -------------------------------------------------------------------------------- /components/RecentOrders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/components/RecentOrders.vue -------------------------------------------------------------------------------- /components/Reminders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/components/Reminders.vue -------------------------------------------------------------------------------- /components/SalesChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/components/SalesChart.vue -------------------------------------------------------------------------------- /components/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/components/Sidebar.vue -------------------------------------------------------------------------------- /components/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/components/SidebarItem.vue -------------------------------------------------------------------------------- /components/StatusCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/components/StatusCard.vue -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/package.json -------------------------------------------------------------------------------- /public/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/public/cover.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/public/icon.svg -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayBreezy/analytics-ui/HEAD/tsconfig.json --------------------------------------------------------------------------------