-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (79 loc) · 2.85 KB
/
Copy pathindex.html
File metadata and controls
86 lines (79 loc) · 2.85 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
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Orphafold | Deep Genomic Discovery</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@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #FFFFFF;
color: #111827;
}
.mono { font-family: 'JetBrains Mono', monospace; }
/* Grid Background */
.bg-grid {
background-image:
linear-gradient(to right, #8080800a 1px, transparent 1px),
linear-gradient(to bottom, #8080800a 1px, transparent 1px);
background-size: 24px 24px;
}
/* Gradient Text */
.text-gradient {
background: linear-gradient(to right, #4285F4, #7B68EE, #00BFA5);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Gradient Button */
.btn-gradient {
background: linear-gradient(to right, #4285F4, #7B68EE, #00BFA5);
}
/* Glass Cards */
.glass-card {
background: rgba(255, 255, 255, 0.5);
backdrop-filter: blur(8px);
border: 1px solid rgba(229, 231, 235, 1);
}
@keyframes orb-pulse {
0%, 100% { transform: scale(1); opacity: 0.3; }
50% { transform: scale(1.1); opacity: 0.5; }
}
.animate-orb {
animation: orb-pulse 8s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
</style>
<script type="importmap">
{
"imports": {
"@google/genai": "https://esm.sh/@google/genai@^1.40.0",
"react/": "https://esm.sh/react@^19.2.4/",
"react": "https://esm.sh/react@^19.2.4",
"react-dom/": "https://esm.sh/react-dom@^19.2.4/",
"d3": "https://esm.sh/d3@^7.9.0",
"lucide-react": "https://esm.sh/lucide-react@^0.563.0",
"jquery": "https://esm.sh/jquery@^4.0.0",
"3dmol": "https://esm.sh/3dmol@^2.5.4",
"@react-three/fiber": "https://esm.sh/@react-three/fiber@^9.5.0",
"three": "https://esm.sh/three@^0.182.0",
"@react-three/drei": "https://esm.sh/@react-three/drei@^10.7.7"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-grid">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>