-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
160 lines (137 loc) · 4.46 KB
/
index.html
File metadata and controls
160 lines (137 loc) · 4.46 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">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AetherWays — Kinetic Route Comparison Engine</title>
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="description"
content="AetherWays uses advanced kinetic analysis to find your perfect path across air, land, and rail. Compare routes, prices, and durations instantly." />
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
display: ['"Bricolage Grotesque"', 'sans-serif'],
mono: ['"JetBrains Mono"', 'monospace'],
body: ['"Manrope"', 'sans-serif'],
},
colors: {
lime: { 400: '#BAFF29', 500: '#A8E520' },
void: '#050505',
ultraviolet: '#3B0086',
},
},
},
}
</script>
<link
href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=JetBrains+Mono:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<style>
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
font-family: 'Manrope', sans-serif;
background-color: #050505;
color: #f0f0f0;
margin: 0;
overflow-x: hidden;
}
::selection {
background: #BAFF29;
color: #050505;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #050505;
}
::-webkit-scrollbar-thumb {
background: #1a1a1a;
border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
background: #BAFF29;
}
@keyframes grain {
0%,
100% {
transform: translate(0, 0);
}
10% {
transform: translate(-5%, -10%);
}
20% {
transform: translate(-15%, 5%);
}
30% {
transform: translate(7%, -25%);
}
40% {
transform: translate(-5%, 25%);
}
50% {
transform: translate(-15%, 10%);
}
60% {
transform: translate(15%, 0%);
}
70% {
transform: translate(0%, 15%);
}
80% {
transform: translate(3%, 35%);
}
90% {
transform: translate(-10%, 10%);
}
}
.grain-overlay::after {
content: '';
position: fixed;
inset: -50%;
width: 200%;
height: 200%;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
opacity: 0.3;
pointer-events: none;
z-index: 9999;
animation: grain 8s steps(10) infinite;
}
/* Brutalist input overrides */
input,
select,
textarea {
font-family: 'JetBrains Mono', monospace;
}
input::placeholder {
font-family: 'JetBrains Mono', monospace;
opacity: 0.3;
}
</style>
<script type="importmap">
{
"imports": {
"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/",
"@google/genai": "https://esm.sh/@google/genai@^1.34.0",
"framer-motion": "https://esm.sh/framer-motion@^12.23.26",
"lucide-react": "https://esm.sh/lucide-react@^0.562.0",
"@supabase/supabase-js": "https://esm.sh/@supabase/supabase-js@^2.48.1",
"zustand": "https://esm.sh/zustand@^5.0.3"
}
}
</script>
</head>
<body class="grain-overlay">
<div id="root"></div>
<script type="module" src="index.tsx"></script>
</body>
</html>