-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 2.58 KB
/
index.html
File metadata and controls
70 lines (70 loc) · 2.58 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
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Legal Rights Awareness Chatbot</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:wght@400;700&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'Arial', 'Helvetica Neue', 'sans-serif'],
mono: ['Consolas', 'Menlo', 'Monaco', 'monospace'],
},
keyframes: {
in: {
'0%': { transform: 'translateY(18px)', opacity: 0 },
'100%': { transform: 'translateY(0)', opacity: 1 },
},
'fade-in': {
'0%': { opacity: 0 },
'100%': { opacity: 1 },
},
'background-pan': {
'0%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
'100%': { backgroundPosition: '0% 50%' },
},
'text-pan': {
'0%': { backgroundPosition: '0%' },
'100%': { backgroundPosition: '200%' },
},
'stagger-in': {
'0%': { transform: 'translateY(8px)', opacity: 0 },
'100%': { transform: 'translateY(0)', opacity: 1 },
},
},
animation: {
in: 'in .6s both',
'fade-in': 'fade-in .3s ease-out',
'background-pan': 'background-pan 15s ease infinite',
'text-pan': 'text-pan 3s linear infinite',
'stagger-in': 'stagger-in .4s ease-out both',
},
},
},
}
</script>
<script type="importmap">
{
"imports": {
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.28.0",
"react/": "https://aistudiocdn.com/react@^19.2.0/",
"react": "https://aistudiocdn.com/react@^19.2.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
"marked": "https://esm.sh/marked@13.0.2"
}
}
</script>
</head>
<body class="bg-gradient-to-br from-gray-950 via-gray-900 to-blue-950/40 bg-[length:200%_200%] animate-background-pan">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>