diff --git a/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/Dashboard.svelte b/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/Dashboard.svelte
index dda54a7..a956f8a 100644
--- a/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/Dashboard.svelte
+++ b/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/Dashboard.svelte
@@ -15,6 +15,7 @@
}
import axios from "axios";
+ import Statistics from "./Statistics.svelte";
onMount(async () => {
const token = getCookie('access_token');
@@ -64,6 +65,8 @@
{:else if $selectedTab === 'settings'}
+ {:else if $selectedTab === 'statistics'}
+
{/if}
diff --git a/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/Settings.svelte b/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/Settings.svelte
index 14d6222..d47c660 100644
--- a/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/Settings.svelte
+++ b/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/Settings.svelte
@@ -2,6 +2,7 @@
import {globalStyles} from "../styles.js";
import {themeDark} from "../styles.js";
import {themeDefault} from "../styles.js";
+ import {themeColorful} from "../styles.js";
function theme_dark() {
$globalStyles = themeDark;
@@ -10,19 +11,34 @@
function theme_default() {
$globalStyles = themeDefault;
}
+
+ function theme_colorful() {
+ $globalStyles = themeColorful;
+ }
-
+
Settings
-
+
+
+
+
Light Mode
+
+
-
+
+
+
Dark Mode
+
+
-
+
+
+
Pinky Theme
+
+
+
-
-
-
\ No newline at end of file
diff --git a/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/Statistics.svelte b/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/Statistics.svelte
new file mode 100644
index 0000000..99e3c96
--- /dev/null
+++ b/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/Statistics.svelte
@@ -0,0 +1,2 @@
+
ACT LIKE THERE'S A NEURAL NETWORK HERE
+
IT'S REALLY IN THE WORKS THOUGH
\ No newline at end of file
diff --git a/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/expenses/graphs/Graph2.svelte b/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/expenses/graphs/Graph2.svelte
index 0901c55..5a820bb 100644
--- a/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/expenses/graphs/Graph2.svelte
+++ b/src/main/java/com/faf223/expensetrackerfaf/web/src/routes/dashboard/board/expenses/graphs/Graph2.svelte
@@ -1,7 +1,7 @@