-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDashboard.html
More file actions
50 lines (45 loc) · 2.6 KB
/
Dashboard.html
File metadata and controls
50 lines (45 loc) · 2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>VSA DT Fabrication Dashboard</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="lib/tokens.css" />
<template id="__bundler_thumbnail">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400">
<rect width="400" height="400" fill="#1a1a16"/>
<g stroke="#f7f7f5" stroke-width="6" fill="none" stroke-linecap="round">
<rect x="110" y="110" width="180" height="180" rx="10"/>
<path d="M140 200 L260 200 M200 140 L200 260"/>
<circle cx="200" cy="200" r="30"/>
</g>
<text x="200" y="340" font-family="monospace" font-size="22" fill="#f7f7f5" text-anchor="middle" letter-spacing="4">DT · FAB</text>
</svg>
</template>
</head>
<body>
<div id="root"></div>
<script src="https://unpkg.com/react@18.3.1/umd/react.development.js" integrity="sha384-hD6/rw4ppMLGNu3tX5cjIb+uRZ7UkRJ6BPkLpg4hAu/6onKUg4lLsHAs9EBPT82L" crossorigin="anonymous"></script>
<script src="https://unpkg.com/react-dom@18.3.1/umd/react-dom.development.js" integrity="sha384-u6aeetuaXnQ38mYT8rp6sbXaQe3NL9t+IBXmnYxwkUI2Hw4bsp2Wvmx4yRQF1uAm" crossorigin="anonymous"></script>
<script src="https://unpkg.com/@babel/standalone@7.29.0/babel.min.js" integrity="sha384-m08KidiNqLdpJqLq95G/LEi8Qvjl/xUYll3QILypMoQ65QorJ9Lvtp2RXYGBFj1y" crossorigin="anonymous"></script>
<script type="text/babel" src="lib/Icon.jsx"></script>
<script type="text/babel" src="lib/data.jsx"></script>
<script type="text/babel" src="lib/i18n.jsx"></script>
<script type="text/babel" src="lib/state.jsx"></script>
<script type="text/babel" src="lib/audit.jsx"></script>
<script type="text/babel" src="lib/api.jsx"></script>
<script type="text/babel" src="lib/ai.jsx"></script>
<script type="text/babel" src="lib/primitives.jsx"></script>
<script type="text/babel" src="lib/AppBar.jsx"></script>
<script type="text/babel" src="lib/StudentHome.jsx"></script>
<script type="text/babel" src="lib/StudentStudio.jsx"></script>
<script type="text/babel" src="lib/SubmissionForm.jsx"></script>
<script type="text/babel" src="lib/NeedsFixView.jsx"></script>
<script type="text/babel" src="lib/RoleViews.jsx"></script>
<script type="text/babel" src="lib/Admin.jsx"></script>
<script type="text/babel" src="lib/App.jsx"></script>
</body>
</html>