-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
65 lines (64 loc) · 2.58 KB
/
index.html
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html lang="en" class="h-full dark:bg-gray-900">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./basic-tailwind-imports-for-html-files.css" rel="stylesheet" />
<script>
// Check system dark mode preference and apply dark class
if (window.matchMedia("(prefers-color-scheme: dark)").matches) {
document.documentElement.classList.add("dark");
}
// Listen for system dark mode changes
window
.matchMedia("(prefers-color-scheme: dark)")
.addEventListener("change", (e) => {
if (e.matches) {
document.documentElement.classList.add("dark");
} else {
document.documentElement.classList.remove("dark");
}
});
</script>
</head>
<body class="h-full bg-white dark:bg-gray-900">
<div class="flex flex-row">
<a href="./test/agent-embed/">
<div
class="p-2 m-2 cursor-pointer border rounded-md hover:bg-gray-50 dark:hover:bg-gray-800 dark:border-gray-700 dark:text-white flex items-center justify-center w-40 h-40 bg-white dark:bg-gray-900"
>
Query data page (full embed + allows for csv upload + project
selection)
</div>
</a>
<a href="./test/analysis-tree-viewer/">
<div
class="p-2 m-2 cursor-pointer border rounded-md hover:bg-gray-50 dark:hover:bg-gray-800 dark:border-gray-700 dark:text-white flex items-center justify-center w-40 h-40 bg-white dark:bg-gray-900"
>
Test tree viewer (single project)
</div>
</a>
<a href="./test/analysis-agent/">
<div
class="p-2 m-2 cursor-pointer border rounded-md hover:bg-gray-50 dark:hover:bg-gray-800 dark:border-gray-700 dark:text-white flex items-center justify-center w-40 h-40 bg-white dark:bg-gray-900"
>
Single Analysis
</div>
</a>
<a href="./test/ui-components/">
<div
class="p-2 m-2 cursor-pointer border rounded-md hover:bg-gray-50 dark:hover:bg-gray-800 dark:border-gray-700 dark:text-white flex items-center justify-center w-40 h-40 bg-white dark:bg-gray-900"
>
Test UI components
</div>
</a>
<a href="test/oracle/">
<div
class="p-2 m-2 cursor-pointer border rounded-md hover:bg-gray-50 dark:hover:bg-gray-800 dark:border-gray-700 dark:text-white flex items-center justify-center w-40 h-40 bg-white dark:bg-gray-900"
>
Test Oracle reports
</div>
</a>
</div>
</body>
</html>