generated from google-gemini/aistudio-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.3 KB
/
index.html
File metadata and controls
43 lines (42 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AniVerse Search</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
/* Custom scrollbar for a better look */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1a202c; /* dark gray */
}
::-webkit-scrollbar-thumb {
background: #4a5568; /* medium gray */
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #718096; /* light gray */
}
</style>
<script type="importmap">
{
"imports": {
"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/",
"react-router-dom": "https://aistudiocdn.com/react-router-dom@^7.9.5",
"react-redux": "https://aistudiocdn.com/react-redux@^9.2.0",
"@reduxjs/toolkit": "https://aistudiocdn.com/@reduxjs/toolkit@^2.9.2"
}
}
</script>
</head>
<body class="bg-gray-900 text-gray-100">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>