- Forgot your password? No problem. Just let us know your email
- address and we will email you a password reset link that will allow
- you to choose a new one.
-
-
- Please confirm access to your account by entering the
- authentication code provided by your authenticator application.
-
-
-
- Please confirm access to your account by entering one of your
- emergency recovery codes.
-
-
- Thanks for signing up! Before getting started, could you verify your
- email address by clicking on the link we just emailed to you? If you
- didn't receive the email, we will gladly send you another.
-
-
-
-
-
-
-
-
- Logout
-
-
-
-
-
-
diff --git a/.laravel-guide/resources/js/app.js b/.laravel-guide/resources/js/app.js
deleted file mode 100644
index d096edf..0000000
--- a/.laravel-guide/resources/js/app.js
+++ /dev/null
@@ -1,47 +0,0 @@
-import "../css/_base.css";
-
-import { createPinia } from "pinia";
-import { useStyleStore } from "@/stores/style.js";
-import { darkModeKey, styleKey } from "@/config.js";
-import { createApp, h } from "vue";
-import { createInertiaApp } from "@inertiajs/vue3";
-import { resolvePageComponent } from "laravel-vite-plugin/inertia-helpers";
-import { ZiggyVue } from "../../vendor/tightenco/ziggy/dist/vue.m";
-
-const appName =
- window.document.getElementsByTagName("title")[0]?.innerText || "Laravel";
-
-const pinia = createPinia();
-
-createInertiaApp({
- title: (title) => `${title} - ${appName}`,
- resolve: (name) =>
- resolvePageComponent(
- `./Pages/${name}.vue`,
- import.meta.glob("./Pages/**/*.vue"),
- ),
- setup({ el, App, props, plugin }) {
- return createApp({ render: () => h(App, props) })
- .use(plugin)
- .use(pinia)
- .use(ZiggyVue, Ziggy)
- .mount(el);
- },
- progress: {
- color: "#4B5563",
- },
-});
-
-const styleStore = useStyleStore(pinia);
-
-/* App style */
-styleStore.setStyle(localStorage[styleKey] ?? "basic");
-
-/* Dark mode */
-if (
- (!localStorage[darkModeKey] &&
- window.matchMedia("(prefers-color-scheme: dark)").matches) ||
- localStorage[darkModeKey] === "1"
-) {
- styleStore.setDarkMode(true);
-}
diff --git a/.laravel-guide/resources/js/components/FormValidationErrors.vue b/.laravel-guide/resources/js/components/FormValidationErrors.vue
deleted file mode 100644
index a0bda3e..0000000
--- a/.laravel-guide/resources/js/components/FormValidationErrors.vue
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- Whoops! Something went wrong.
- {{ error }}
-
-
diff --git a/.nuxt-guide/README.md b/.nuxt-guide/README.md
deleted file mode 100644
index 106951c..0000000
--- a/.nuxt-guide/README.md
+++ /dev/null
@@ -1,235 +0,0 @@
-# Free Nuxt 3.x Vue 3.x Tailwind 3.x Dashboard
-
-This guide will help you integrate your Nuxt.js 3.x application with [Admin One - free Vue 3 Tailwind 3 Admin Dashboard with dark mode](https://github.com/justboil/admin-one-vue-tailwind).
-
-**Please note:** this document is work in progress and Nuxt 3 is in Release Candidate state, so some things can be missing and warnings may occur.
-
-## Table of contents
-
-... TOC is coming soon
-
-## Install Nuxt.js 3.x app with Tailwind CSS
-
-Check [Nuxt installation guide](https://v3.nuxtjs.org/getting-started/quick-start) for more information.
-
-* Run `npx nuxi init sample-app`
-* then `cd sample-app`
-* and `npm install`
-
-Then, let's install TailwindCSS. Check [Tailwind Nuxt installation guide](https://tailwindcss.com/docs/guides/nuxtjs) for more information.
-
-```sh
-# Install tailwind
-npm install -D @nuxtjs/tailwindcss @tailwindcss/forms
-
-# Install other required packages
-npm i @mdi/js chart.js numeral
-
-# Install Pinia (official Vuex 5). --legacy-peer-deps is required because of the package dependencies issue
-npm install --legacy-peer-deps pinia @pinia/nuxt
-```
-
-### Copy styles, components and scripts
-
-Now clone [justboil/admin-one-vue-tailwind](https://github.com/justboil/admin-one-vue-tailwind) project somewhere locally (into any separate folder)
-
-Next, copy these files **from justboil/admin-one-vue-tailwind project** directory **to nuxt project** directory:
-
-* Copy `tailwind.config.js` to `/`
-* Copy `src/components` to `components/`
-* Copy `src/layouts` to `layouts/`
-* Copy `src/stores` to `stores/`
-* Copy `src/colors.js` `src/config.js` `src/menuAside.js` `src/menuNavBar.js` `src/styles.js` to `configs/`
-* Copy `src/css` to `assets/css/`
-* Copy `public/favicon.png` to `public/`
-
-### Prepare items
-
-#### In nuxt.config.ts
-
-```javascript
-import { defineNuxtConfig } from 'nuxt'
-
-// https://v3.nuxtjs.org/api/configuration/nuxt.config
-export default defineNuxtConfig({
- buildModules: [
- '@pinia/nuxt',
- ],
- postcss: {
- plugins: {
- tailwindcss: {},
- autoprefixer: {},
- },
- },
- css: [
- '@/assets/css/main.css',
- ]
-})
-```
-
-#### In tailwind.config.js
-
-Replace `content`:
-
-```js
-module.exports = {
- content: [
- './composables/**/*.{js,vue,ts}',
- './components/**/*.{js,vue,ts}',
- './layouts/**/*.vue',
- './pages/**/*.vue',
- './plugins/**/*.{js,ts}',
- 'app.vue'
- ],
- // ...
-}
-```
-
-#### In App.vue
-
-```vue
-
-
-
-
` and replace `` with ``
-
-**Why we need a div wrapper?** If you use `` within your pages, make sure it is not the root element (or disable layout/page transitions) — [Info](https://v3.nuxtjs.org/guide/directory-structure/layouts#overriding-a-layout-on-a-per-page-basis)
-
-```vue
-
-
-
-
-
-
-
-
-
-```
-
-#### HomeView.vue
-
-Copy `views/HomeView.vue` to `pages/dashboard.vue`
-
-Then, wrap the entire template with `
` and replace `` with `` with a `name` prop.
-
-```vue
-
-
-
-
-
-
-
-
-
-```
-
-## Replace `` with ``
-
-Details are coming soon...
-
-## Remove/update imports
-
-Nuxt automatically imports any components in your `components/` directory. So, you may safely remove that imports from `
-
+
+
+
+
+
+
diff --git a/src/components/CardBoxClient.vue b/src/components/CardBoxClient.vue
deleted file mode 100644
index f68d498..0000000
--- a/src/components/CardBoxClient.vue
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-
-
-
-