a9 commited on
Commit
fd4f2f7
·
verified ·
1 Parent(s): e83ac79

Upload 26 files

Browse files
Files changed (2) hide show
  1. frontend/index.css +7 -0
  2. frontend/index.html +13 -0
frontend/index.css ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ body {
6
+ font-family: system-ui, sans-serif;
7
+ }
frontend/index.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>SpaceProbe Dashboard</title>
7
+ </head>
8
+ <body class="bg-black text-white">
9
+ <div id="root"></div>
10
+
11
+ <script type="module" src="/src/main.tsx"></script>
12
+ </body>
13
+ </html>