diff --git a/frontend/events/index.hml b/frontend/events/index.html similarity index 100% rename from frontend/events/index.hml rename to frontend/events/index.html diff --git a/frontend/index.html b/frontend/index.html index 6840c9c..46effad 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -1 +1,26 @@ -hier komt de main pagina \ No newline at end of file + + + + Calendar + + + +
+ +
+

Dashboard

+
+ Kalender komt hier +
+
+
+ + \ No newline at end of file diff --git a/frontend/style.css b/frontend/style.css new file mode 100644 index 0000000..93ee329 --- /dev/null +++ b/frontend/style.css @@ -0,0 +1,59 @@ +* { + box-sizing: border-box; +} + + +body { + margin: 0; + background: #080808; + color: white; + font-family: monospace; +} + + +.layout { + display: grid; + + grid-template-columns: 250px 1fr; + + height: 100vh; +} + + +.sidebar { + background: #111; + padding: 20px; + border-right: 1px solid #333; +} + + +.sidebar nav { + display: flex; + flex-direction: column; + gap: 15px; +} + + +.sidebar a { + color: white; + text-decoration: none; +} + + +.sidebar a:hover { + color: cyan; +} + + +.content { + padding: 30px; +} + + +.calendar { + background: #151515; + border: 1px solid #333; + border-radius: 10px; + height: 500px; + padding: 20px; +} \ No newline at end of file