-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
160 lines (155 loc) · 5.36 KB
/
Copy pathindex.html
File metadata and controls
160 lines (155 loc) · 5.36 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AURA | Prompt IDE</title>
<script src="https://cdn.tailwindcss.com"></script>
<!-- JetBrains Mono Font -->
<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=JetBrains+Mono:wght@100..800&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['"PingFang SC"', 'Inter', 'system-ui', 'sans-serif'],
mono: ['"JetBrains Mono"', 'Fira Code', 'monospace'],
},
colors: {
space: {
900: '#0b0c15',
800: '#13141f',
700: '#1c1e2e',
950: '#050508'
},
neon: {
purple: '#b026ff',
blue: '#00eaff',
pink: '#ff007a'
}
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
'slide-in': 'slideIn 0.3s ease-out forwards',
'slide-up': 'slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards',
'fade-in': 'fadeIn 0.2s ease-out forwards',
'grow-line': 'growLine 0.4s ease-out forwards',
'explode': 'explode 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
slideIn: {
'0%': { transform: 'translateX(20px)', opacity: '0' },
'100%': { transform: 'translateX(0)', opacity: '1' },
},
slideUp: {
'0%': { transform: 'translateY(40px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
growLine: {
'0%': { width: '0%', opacity: '0' },
'100%': { width: '100%', opacity: '1' }
},
explode: {
'0%': { transform: 'scale(0.8)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' }
}
}
},
},
};
</script>
<style>
body {
background-color: #050508;
color: #e2e8f0;
}
/* Typography Polish */
code, pre, textarea, .font-mono {
font-feature-settings: "calt" 1; /* Contextual Alternates for Ligatures */
font-variant-ligatures: normal;
}
/* Noise Background */
.bg-noise {
position: relative;
}
.bg-noise::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.03;
pointer-events: none;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
z-index: 0;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.2);
}
.glass {
background: rgba(19, 20, 31, 0.6);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-high {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(40px);
-webkit-backdrop-filter: blur(40px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.animate-in {
animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Hide scrollbar for miller columns but keep functionality */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
</style>
<script type="importmap">
{
"imports": {
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3",
"@google/genai": "https://esm.sh/@google/genai@^1.34.0",
"dexie": "https://esm.sh/dexie@^4.0.1",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"dexie-react-hooks": "https://esm.sh/dexie-react-hooks@^4.2.0"
}
}
</script>
</head>
<body class="antialiased overflow-hidden h-screen w-screen selection:bg-neon-purple selection:text-white bg-noise">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>