summaryrefslogtreecommitdiff
path: root/webGUI
diff options
context:
space:
mode:
authorAbdellah El Morabit <nsrddyn@gmail.com>2024-11-18 19:23:17 +0100
committerAbdellah El Morabit <nsrddyn@gmail.com>2024-11-18 19:23:17 +0100
commit2feb019c373c99fa3840d99724f5ee6f7c4dac36 (patch)
tree9bf1d614b602149a0ef27078894d6a15ecb13ff0 /webGUI
parent3714c08a1233884696e0f5483d73efa890e1a5a1 (diff)
started switching to c, started the web gui, started the gtk gui, ending the swift version
Diffstat (limited to 'webGUI')
-rw-r--r--webGUI/index.html31
-rw-r--r--webGUI/main.mjs1
-rw-r--r--webGUI/pages/stats.html14
-rw-r--r--webGUI/styles.css32
4 files changed, 78 insertions, 0 deletions
diff --git a/webGUI/index.html b/webGUI/index.html
new file mode 100644
index 0000000..eb12eca
--- /dev/null
+++ b/webGUI/index.html
@@ -0,0 +1,31 @@
1<!DOCTYPE html>
2<html lang="en">
3
4<head>
5 <meta charset="UTF-8">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <title>CONSOLE</title>
8 <link rel="stylesheet" href="styles.css">
9 <script src="main.js"></script>
10</head>
11
12<body>
13
14 <nav class="navigation">
15 <p>I2C MODES</p>
16 <a href="" class="CPU_INFO">CPU Information</a>
17 <a href="" class="recources">Recources</a>
18 <a href="" class="speech_trans">Speech Transcriber</a>
19 <a href="" class="notes">Display a message</a>
20 <a href="" class="general">General Tools</a>
21
22 </nav>
23
24
25</body>
26
27<footer>
28
29</footer>
30
31</html> \ No newline at end of file
diff --git a/webGUI/main.mjs b/webGUI/main.mjs
new file mode 100644
index 0000000..c7464e5
--- /dev/null
+++ b/webGUI/main.mjs
@@ -0,0 +1 @@
let modes = ["STATS", ""] \ No newline at end of file
diff --git a/webGUI/pages/stats.html b/webGUI/pages/stats.html
new file mode 100644
index 0000000..8fdbb74
--- /dev/null
+++ b/webGUI/pages/stats.html
@@ -0,0 +1,14 @@
1<!DOCTYPE html>
2<html lang="en">
3
4<head>
5 <meta charset="UTF-8">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <title>STATS - CONSOLE</title>
8</head>
9
10<body>
11
12</body>
13
14</html> \ No newline at end of file
diff --git a/webGUI/styles.css b/webGUI/styles.css
new file mode 100644
index 0000000..eefc162
--- /dev/null
+++ b/webGUI/styles.css
@@ -0,0 +1,32 @@
1body {
2 background-color: rgba(0, 10, 30, 1);
3 text-decoration: none;
4 color: white;
5 font: sans-serif;
6}
7
8body button a {
9 border-radius: 10px;
10 text-decoration: none;
11}
12
13a {
14 text-decoration: none;
15 color: wheat;
16}
17
18.navigation {
19 max-width: fit-content;
20 margin-left: auto;
21 margin-right: auto;
22}
23
24.navigation a {
25 display: block;
26
27 background-color: rgba(0, 0, 0, 1);
28 border-radius: 10px;
29 border: none;
30 padding: 10px;
31 min-width: 100px;
32}