diff --git a/Interface/.gitignore b/Interface/.gitignore
index a3f2ce2..9064298 100644
--- a/Interface/.gitignore
+++ b/Interface/.gitignore
@@ -1,4 +1,3 @@
-/src/contexts/SampleContext.tsx
/test.http
# Logs
diff --git a/Interface/floor-plan.svg b/Interface/floor-plan.svg
new file mode 100644
index 0000000..75b2117
--- /dev/null
+++ b/Interface/floor-plan.svg
@@ -0,0 +1,19 @@
+
+
+
+
\ No newline at end of file
diff --git a/Interface/index.html b/Interface/index.html
index 6cba438..8255f51 100644
--- a/Interface/index.html
+++ b/Interface/index.html
@@ -6,8 +6,8 @@
-
-
+
+
diff --git a/Interface/src/App.tsx b/Interface/src/App.tsx
index 0ce21ce..a13a740 100644
--- a/Interface/src/App.tsx
+++ b/Interface/src/App.tsx
@@ -8,13 +8,14 @@ function App() {
const toggleDarkTheme = () => {
document.documentElement.classList.toggle("dark")
- const bodyColor = document.querySelector("body");
+ const body = document.querySelector("body");
setDarkTheme(!darkTheme);
- if (bodyColor) {
+ if (body) {
+ console.log(body)
if (darkTheme) {
- bodyColor.style.backgroundColor = "#F9F9F9";
+ body.style.backgroundColor = "#F9F9F9";
} else {
- bodyColor.style.backgroundColor = "rgb(12 23 42)";
+ body.style.backgroundColor = "rgb(12 23 42)";
}
}
};
@@ -25,8 +26,7 @@ function App() {
-