diff --git a/client/package.json b/client/package.json
index f410ede..7c844f3 100644
--- a/client/package.json
+++ b/client/package.json
@@ -1,12 +1,11 @@
{
- "name": "kalkutago-client",
+ "name": "kalkulog-client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
- "watch": "vue-tsc --watch & sleep 3 && vite build --watch",
"preview": "vite preview"
},
"dependencies": {
diff --git a/client/src/App.vue b/client/src/App.vue
index b7adb44..961954b 100644
--- a/client/src/App.vue
+++ b/client/src/App.vue
@@ -1,14 +1,9 @@
-
+
-
+
diff --git a/client/src/components/Table.vue b/client/src/components/Table.vue
deleted file mode 100644
index 338bd0b..0000000
--- a/client/src/components/Table.vue
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- | Date |
- {{ track.icon }} |
-
-
-
- | {{ dateString(date) }} |
-
-
- |
-
-
-
-
-
-
\ No newline at end of file
diff --git a/client/src/components/TableRow.vue b/client/src/components/TableRow.vue
deleted file mode 100644
index 840f0d4..0000000
--- a/client/src/components/TableRow.vue
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
- | {{dateString()}} |
- {{tick.name}} |
-
-
-
-
diff --git a/client/src/components/TickComponent.vue b/client/src/components/TickComponent.vue
deleted file mode 100644
index 7fc1ae0..0000000
--- a/client/src/components/TickComponent.vue
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/client/src/error.ts b/client/src/error.ts
deleted file mode 100644
index 5f2ab1a..0000000
--- a/client/src/error.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-
-export const error = console.error
-
-export function handleError(message: string): any {
- return (...args: any) => error(message, ...args)
-}
\ No newline at end of file
diff --git a/client/src/state.ts b/client/src/state.ts
deleted file mode 100644
index e0ad4ad..0000000
--- a/client/src/state.ts
+++ /dev/null
@@ -1,93 +0,0 @@
-import { reactive } from "vue"
-import { Track } from "./track"
-import { error } from "./error"
-
-enum State {
- Unfetched,
- Fetching,
- Fetched,
-}
-
-export const state = reactive({
- tracks: new Array