-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (102 loc) · 3.71 KB
/
index.html
File metadata and controls
108 lines (102 loc) · 3.71 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NBOX TextureLab - Professional PBR Generator</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
:root {
--accent: #6366f1;
--bg-dark: #070709;
--panel-dark: #0f0f13;
}
body {
font-family: 'Plus Jakarta Sans', sans-serif;
background-color: var(--bg-dark);
scrollbar-width: thin;
scrollbar-color: #312e81 #070709;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #312e81; border-radius: 10px; }
.futuristic-border {
border: 1px solid rgba(99, 102, 241, 0.1);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.glow-accent {
text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}
.glass-panel {
background: rgba(15, 15, 19, 0.8);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.mono { font-family: 'JetBrains Mono', monospace; }
@keyframes scan {
0% { transform: translateY(-100%); opacity: 0; }
50% { opacity: 1; }
100% { transform: translateY(100%); opacity: 0; }
}
.animate-scan { animation: scan 2s linear infinite; }
@keyframes orbit {
from { transform: rotate(0deg) translateX(40px) rotate(0deg); }
to { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}
.animate-orbit { animation: orbit 3s linear infinite; }
@keyframes pulse-ring {
0% { transform: scale(0.33); opacity: 0; }
80%, 100% { opacity: 0; }
50% { opacity: 0.5; }
}
.animate-pulse-ring { animation: pulse-ring 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite; }
/* Futuristic Spinner */
.spinner-f {
width: 80px;
height: 80px;
border-radius: 50%;
border: 2px solid transparent;
border-top-color: var(--accent);
position: relative;
animation: spin-f 1.5s linear infinite;
}
.spinner-f::before, .spinner-f::after {
content: "";
position: absolute;
border-radius: 50%;
border: 2px solid transparent;
}
.spinner-f::before {
top: 5px; left: 5px; right: 5px; bottom: 5px;
border-top-color: #ec4899;
animation: spin-f 2s linear infinite;
}
.spinner-f::after {
top: 15px; left: 15px; right: 15px; bottom: 15px;
border-top-color: #3b82f6;
animation: spin-f 1s linear infinite;
}
@keyframes spin-f {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
<script type="importmap">
{
"imports": {
"@google/genai": "https://esm.sh/@google/genai@^1.38.0",
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"@heroicons/react/": "https://esm.sh/@heroicons/react@^2.2.0/"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body class="text-slate-200 min-h-screen overflow-hidden">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>