-
);
};
diff --git a/src/index.css b/src/index.css
index a6a5cd6..eeaee2b 100644
--- a/src/index.css
+++ b/src/index.css
@@ -9,6 +9,22 @@
--buttons-hover-color: #92002c;
--buttons-press-color: #63001e;
+ --accent-color-alternative: #ff6b6b;
+
+ --accent-color-green: #52b852;
+ --accent-color-seagreen-bright: #3cb371;
+ --accent-color-seagreen-dark: #2e8b57;
+
+ --accent-color-blue-bright: #4169e1;
+ --accent-color-blue-dark: #191970;
+
+ --accent-color-yellow: #ffd700;
+ --accent-color-golden: #daa520;
+
+ --accent-color-turquoise: #48d1cc;
+ --accent-color-lilac: #9370db;
+
+
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
diff --git a/src/pages/dashboard/dashboard.css b/src/pages/dashboard/dashboard.css
index 8a6d90e..cc655f8 100644
--- a/src/pages/dashboard/dashboard.css
+++ b/src/pages/dashboard/dashboard.css
@@ -5,8 +5,22 @@
max-width:100%;
}
-
-.login-link:hover {
- color: var(--links-hover-color);
- text-decoration: none;
+.sidebar-container {
+ display: flex;
+}
+
+.dashboard-content {
+ display: flex;
+ height: 100%;
+ width: 100%;
+ justify-content: center;
+ align-items: center;
+}
+
+.dashboard-text {
+ display: flex;
+ max-width: 40vw;
+ text-align: center;
+ text-wrap: pretty;
+ outline: 1px solid thistle;
}
diff --git a/src/pages/dashboard/dashboard.tsx b/src/pages/dashboard/dashboard.tsx
index 267b298..6dce0f9 100644
--- a/src/pages/dashboard/dashboard.tsx
+++ b/src/pages/dashboard/dashboard.tsx
@@ -4,8 +4,14 @@ import "./dashboard.css"
const Dashboard = () => {
return (
-
Dashboard
-
+
+
+
+
+
+
Dashboard Content
WIP
+
+
)
}
diff --git a/src/pages/home/home.tsx b/src/pages/home/home.tsx
index 305dd86..b6045c4 100644
--- a/src/pages/home/home.tsx
+++ b/src/pages/home/home.tsx
@@ -1,23 +1,12 @@
-import { useNavigate } from "react-router-dom";
-import useAuth from "../../auth/auth";
-
import { Link } from 'react-router-dom';
import useLogout from "../../auth/logout"
const Home = () => {
- const { setToken } = useAuth();
- const navigate = useNavigate();
-
- const handleLogout = () => {
- setToken(null);
- navigate("/login");
- };
-
return (
Home
-