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
84 lines (84 loc) · 2.42 KB
/
index.html
File metadata and controls
84 lines (84 loc) · 2.42 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!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>FinGen</title>
<script src="https://cdn.tailwindcss.com"></script>
<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;500;600;700;800&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #f0f4f8; /* A light slate-like fallback */
overflow: hidden;
}
.background-shapes {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
background: linear-gradient(135deg, #e0f2f1 0%, #d1e5f0 100%);
}
.shape {
position: absolute;
border-radius: 50%;
filter: blur(90px);
opacity: 0.5;
animation: float 20s infinite ease-in-out alternate;
}
.shape1 {
width: 300px;
height: 300px;
background-color: #4db6ac;
top: -50px;
left: -100px;
animation-duration: 25s;
}
.shape2 {
width: 400px;
height: 400px;
background-color: #4dd0e1;
bottom: -100px;
right: -150px;
animation-duration: 20s;
}
.shape3 {
width: 250px;
height: 250px;
background-color: #81c784;
top: 40%;
right: 30%;
animation-duration: 30s;
}
@keyframes float {
0% { transform: translateY(0px) translateX(0px); }
100% { transform: translateY(-50px) translateX(20px); }
}
</style>
<script type="importmap">
{
"imports": {
"react": "https://aistudiocdn.com/react@^19.1.1",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.1.1/",
"react/": "https://aistudiocdn.com/react@^19.1.1/",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.17.0"
}
}
</script>
</head>
<body class="text-slate-800">
<div class="background-shapes">
<div class="shape shape1"></div>
<div class="shape shape2"></div>
<div class="shape shape3"></div>
</div>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>