diff --git a/desktop/postcss.config.js b/desktop/postcss.config.cjs similarity index 100% rename from desktop/postcss.config.js rename to desktop/postcss.config.cjs diff --git a/desktop/public/tauri.svg b/desktop/public/tauri.svg deleted file mode 100644 index 31b62c9..0000000 --- a/desktop/public/tauri.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/desktop/public/vite.svg b/desktop/public/vite.svg deleted file mode 100644 index e7b8dfb..0000000 --- a/desktop/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/desktop/src/assets/vue.svg b/desktop/src/assets/vue.svg deleted file mode 100644 index 770e9d3..0000000 --- a/desktop/src/assets/vue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/desktop/src/router/index.ts b/desktop/src/router/index.ts new file mode 100644 index 0000000..542e05f --- /dev/null +++ b/desktop/src/router/index.ts @@ -0,0 +1,10 @@ +import { createRouter, createWebHashHistory } from 'vue-router'; +import Home from '../views/Home.vue'; + +export default createRouter({ + history: createWebHashHistory(), + routes: [ + { path: '/', name: 'Home', component: Home }, + { path: '/about', name: 'About', component: () => import('../views/About.vue') }, + ], +}); diff --git a/desktop/src/views/About.vue b/desktop/src/views/About.vue new file mode 100644 index 0000000..3fa2807 --- /dev/null +++ b/desktop/src/views/About.vue @@ -0,0 +1,5 @@ + + + This is an about page + + diff --git a/desktop/src/views/Home.vue b/desktop/src/views/Home.vue new file mode 100644 index 0000000..458e777 --- /dev/null +++ b/desktop/src/views/Home.vue @@ -0,0 +1,121 @@ + + + + + + + + Drivers required + The WinUSB driver is required to use this device. + + See installation instructions + + + + udev rules required + udev rules are required to access this device. + + See installation + instructions + + + + + + + + + + Include hidden files + + + + + + + + + + + + + + + + diff --git a/desktop/tailwind.config.js b/desktop/tailwind.config.cjs similarity index 100% rename from desktop/tailwind.config.js rename to desktop/tailwind.config.cjs
The WinUSB driver is required to use this device.
+ See installation instructions +
udev rules are required to access this device.
+ See installation + instructions +