-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (57 loc) · 1.97 KB
/
index.html
File metadata and controls
59 lines (57 loc) · 1.97 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
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AutoFlow AI - No-Code Workflow Builder</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<style>
/* Custom Scrollbar for nicer UI */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
.animate-slideLeft {
animation: slideLeft 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideLeft {
from { transform: translateX(100%); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
</style>
<script type="importmap">
{
"imports": {
"rxjs": "https://esm.sh/rxjs@^7.8.2?conditions=es2015",
"rxjs/operators": "https://esm.sh/rxjs@^7.8.2/operators?conditions=es2015",
"rxjs/ajax": "https://esm.sh/rxjs@^7.8.2/ajax?conditions=es2015",
"rxjs/webSocket": "https://esm.sh/rxjs@^7.8.2/webSocket?conditions=es2015",
"rxjs/testing": "https://esm.sh/rxjs@^7.8.2/testing?conditions=es2015",
"rxjs/fetch": "https://esm.sh/rxjs@^7.8.2/fetch?conditions=es2015",
"@google/genai": "https://esm.sh/@google/genai@^1.38.0?external=rxjs",
"@angular/compiler": "https://esm.sh/@angular/compiler@^21.1.1?external=rxjs",
"@angular/platform-browser": "https://esm.sh/@angular/platform-browser@^21.1.1?external=rxjs",
"@angular/common": "https://esm.sh/@angular/common@^21.1.1?external=rxjs",
"@angular/core": "https://esm.sh/@angular/core@^21.1.1?external=rxjs",
"@angular/forms": "https://esm.sh/@angular/forms@^21.1.1?external=rxjs"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<app-root></app-root>
</body>
</html>