-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.39 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 1.39 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" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digital Ally - AI Website Generator</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="/index.css" />
<style>
body {
background-color: #ECFAE5; /* light lime-50 custom */
background-image:
linear-gradient(rgba(176, 219, 156, 0.3) 1px, transparent 1px),
linear-gradient(90deg, rgba(176, 219, 156, 0.3) 1px, transparent 1px);
background-size: 20px 20px;
}
@keyframes fade-in-up {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in-up {
animation: fade-in-up 0.7s ease-out forwards;
}
@keyframes fade-in-up-short {
from {
opacity: 0;
transform: translateY(15px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in-up-short {
animation: fade-in-up-short 0.6s ease-out forwards;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>