-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
253 lines (234 loc) · 8.08 KB
/
index.html
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-CP3TBB1537"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-CP3TBB1537");
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="We are building cool experiences with WEB3, motion, 3D, interactive design, and code."
/>
<meta
name="keywords"
content="3D web design, WEB3, motion graphics, interactive design, Spline, front-end development"
/>
<meta name="author" content="BurningHat" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#000000" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://3dweb.burninghat.tech/" />
<meta
property="og:title"
content="BurningHat - Immersive 3D Web Experiences"
/>
<meta
property="og:description"
content="Discover our cutting-edge 3D web designs combining WEB3, motion, and interactive experiences."
/>
<meta
property="og:image"
content="https://i.ibb.co/2F2RB60/3d-web-design-HD.jpg"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://3dweb.burninghat.tech/" />
<meta
property="twitter:title"
content="BurningHat - Immersive 3D Web Experiences"
/>
<meta
property="twitter:description"
content="Discover our cutting-edge 3D web designs combining WEB3, motion, and interactive experiences."
/>
<meta
property="twitter:image"
content="https://i.ibb.co/2F2RB60/3d-web-design-HD.jpg"
/>
<title>3d web design | BurningHat</title>
<!-- Favicon -->
<link rel="icon" type="image/png" href="/favicon.png" />
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Remix Icon -->
<link
href="https://cdn.jsdelivr.net/npm/remixicon@4.3.0/fonts/remixicon.css"
rel="stylesheet"
/>
<!-- Custom Styles -->
<style>
@import url("https://fonts.googleapis.com/css2?family=Gruppo&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap");
.nav-link {
position: relative;
text-decoration: none;
}
.nav-link::after {
content: "";
position: absolute;
width: 100%;
height: 1px;
bottom: -4px;
left: 0;
background-color: white;
transform: scaleX(0);
transform-origin: bottom left;
transition: transform 0.3s ease-out;
}
.nav-link:hover::after {
transform: scaleX(1);
}
#mobile-gif {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.glass-effect {
background: rgba(95, 93, 93, 0.342);
backdrop-filter: blur(7px);
-webkit-backdrop-filter: blur(10px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="bg-black text-white font-['Gruppo',sans-serif] overflow-hidden">
<nav class="absolute top-0 left-0 right-0 z-20">
<div
class="container mx-auto px-4 md:px-10 py-4 md:py-10 flex justify-between items-center"
>
<div class="text-2xl font-bold">BurningHat</div>
<div class="hidden md:flex space-x-8 glass-effect">
<a href="#" class="nav-link">Home</a>
<a href="#" class="nav-link">Courses</a>
<a href="#" class="nav-link">Library</a>
<a href="#" class="nav-link">Resources</a>
</div>
<button
class="hidden md:block border border-white/50 rounded-full px-4 py-2 hover:bg-white/10 transition"
>
Let's Talk
</button>
<button
id="menu-toggle"
class="md:hidden text-white border border-white/50 rounded-full px-3 py-1 hover:bg-white/10 transition focus:outline-none"
>
<i class="ri-menu-3-line text-xl"></i>
</button>
</div>
</nav>
<div
id="mobile-menu"
class="fixed inset-0 bg-black bg-opacity-90 z-30 hidden flex-col justify-center items-center px-4 md:px-10 glass-effect"
>
<button
id="close-menu"
class="absolute top-4 right-4 text-white border border-white/50 rounded-full px-3 py-1 hover:bg-white/10 transition focus:outline-none"
>
<i class="ri-close-line text-xl"></i>
</button>
<a
href="#"
class="text-2xl my-4 hover:text-gray-300 transition-colors duration-300"
>Home</a
>
<a
href="#"
class="text-2xl my-4 hover:text-gray-300 transition-colors duration-300"
>Courses</a
>
<a
href="#"
class="text-2xl my-4 hover:text-gray-300 transition-colors duration-300"
>Library</a
>
<a
href="#"
class="text-2xl my-4 hover:text-gray-300 transition-colors duration-300"
>Resources</a
>
<button
class="mt-8 border border-white/50 rounded-full px-6 py-3 hover:bg-white/10 transition text-xl"
>
Let's Talk
</button>
</div>
<div class="relative w-full h-screen">
<spline-viewer
url="https://prod.spline.design/WNmhHpS4PLU16Rji/scene.splinecode"
class="w-full h-full hidden md:block"
></spline-viewer>
<img
id="mobile-gif"
src="animation.gif"
alt="Animated GIF"
class="w-full h-full object-cover md:hidden"
/>
<div class="absolute inset-0 pointer-events-none">
<div
class="container mx-auto h-full flex flex-col justify-end px-4 md:px-10 py-4 md:py-10"
>
<div
class="flex flex-col md:flex-row justify-between items-start md:items-end"
>
<div class="mb-8 md:mb-0 max-w-full md:max-w-[50%] glass-effect">
<h1
class="text-4xl sm:text-5xl md:text-6xl lg:text-7xl xl:text-[5rem] font-['Sen',sans-serif] font-normal leading-none tracking-tighter mb-4"
>
We're building<br />Cool Experience
</h1>
<p class="text-xs sm:text-sm md:text-base tracking-widest">
WEB3 \ MOTION \ 3D \ INTERACTIVE \ DESIGN \ CODE
</p>
</div>
<div class="w-full md:w-auto md:text-left glass-effect">
<p
class="text-sm sm:text-base md:text-lg lg:text-xl mb-4 md:mb-8"
>
Crafting Awesome Stories and Clean
<br class="hidden md:inline" />
Design to Make Brand Stand Out
</p>
<div
class="flex flex-col sm:flex-row md:flex-col lg:flex-row space-y-2 sm:space-y-0 sm:space-x-4 md:space-x-0 md:space-y-2 lg:space-y-0 lg:space-x-4 md:items-end"
>
<button
class="pointer-events-auto text-xs sm:text-sm md:text-base border border-white/50 rounded-full px-3 py-1 md:px-4 md:py-2 hover:bg-white/10 transition w-full sm:w-auto"
>
Learn More
</button>
<button
class="pointer-events-auto text-xs sm:text-sm md:text-base border border-white/50 rounded-full px-3 py-1 md:px-4 md:py-2 hover:bg-white/10 transition w-full sm:w-auto"
>
Contact Us
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<script
type="module"
src="https://unpkg.com/@splinetool/viewer@1.7.6/build/spline-viewer.js"
></script>
<script src="script.js"></script>
</body>
</html>