-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
400 lines (336 loc) · 18.8 KB
/
Copy pathindex.html
File metadata and controls
400 lines (336 loc) · 18.8 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
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RØDE Microphones</title>
<!-- Font Awesome Kit -->
<script src="https://kit.fontawesome.com/cc70fa30b0.js" crossorigin="anonymous"></script>
<!-- Favicon -->
<link rel="icon" type="image/png" href="./images/rode-favicon.svg">
<!-- ion icon Links -->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
<!-- Google Fonts -->
<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@400;500;600;700;800;900&display=swap"
rel="stylesheet">
<!-- Tailwind CSS Links -->
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
golden: "#AD9970",
myblack:"#231F20",
darkblack:"#000000",
lightgrey:"#F9F9F9",
textcolor:"#7F7F77" ,
textlightcolor:"#767676",
slightwhite:"#f8f9fa",
},
backgroundImage: {
'bgfirst': "url('./images/hero-bg-img.jpg')",
'bgsecond': "url('./images/rode_nth100_big.jpg')",
'bgthird': "url('./images/nth-usb-bg.jpg')",
'bgfourth': "url('./images/pod-mic-bg.jpg')",
'bgfifth': "url('./images/wireless-go-bg.jpg')",
'bgsixth': "url('./images/nt-usb-mini-bg.jpg')",
}
}
}
}
</script>
</head>
<body>
<!-- NAVBAR SECTION -->
<nav class="flex lg:hidden items-center justify-between h-11 p-3 px-3 bg-lightgrey font-[Inter] ">
<div class="flex items-center gap-2">
<div> <ion-icon name="menu-outline"></ion-icon></div>
<div class="flex items-center">
<ion-icon name="location-outline"></ion-icon>
<span>EN</span>
<ion-icon name="caret-down-outline"></ion-icon>
</div>
</div>
<div><img class="h-[1.5rem]" src="./images/rodelogo.svg" alt="" srcset=""></div>
<div class="float-right"><ion-icon name="search-outline"></ion-icon></div>
</nav>
<!-- NAVBAR SECTION LARGER SCREEN -->
<nav class="navbar_lg hidden lg:block">
<div class="flex flex-row items-center pt-1 justify-between my-2 mx-[20vh]">
<div class="flex items-center gap-2">
<div class="flex items-center">
<ion-icon name="location-outline"></ion-icon>
<span>EN</span>
<ion-icon name="caret-down-outline"></ion-icon>
</div>
</div>
<div class="float-right"> <ion-icon name="person-outline"></ion-icon></div>
</div>
<hr>
<div class="flex items-center justify-around h-[70px] p-3 px-3 bg-lightgrey font-[Inter]">
<div class="flex items-center gap-2">
<div class="flex items-center">
<img class="h-[1.5rem]" src="./images/rodelogo.svg" alt="" srcset="">
</div>
</div>
<div class="flex flex-row gap-6">
<a href="">PRODUCTS</a>
<a href="">USER GUIDES</a>
<a href="">SOLUTIONS</a>
<a href="">APPAREL</a>
<a href="">SUPPORT</a>
</div>
<div class="float-right"><ion-icon class="text-[25px]" name="search-outline"></ion-icon></div>
</div>
</nav>
<!-- HERO SECTION -->
<hero class="font-[Inter] flex flex-col lg:flex-row bg-darkblack lg:bg-bgfirst bg-cover bg-center md:bg-no-repeat lg:py-4 lg:h-[85vh] h-full w-full">
<div class="lg:basis-1/2">
<img src="./images/hero-img.jpg" class="lg:hidden w-full content-cover" alt="" srcset="">
</div>
<div class="flex flex-col lg:py-[65px] lg:px-[65px] lg:basis-1/2 justify-center">
<div class="bg-darkblack flex flex-col md:bg-transparent">
<img src="./images/rode-caster-pro.svg" alt="" srcset="">
<h1 class="text-center text-white py-2 text-[22px]">The Revolution Is Here</h1>
<p class="text-center text-textcolor px-3">The RØDECaster Pro II is the world's most powerful all-in-one audio solution for streamers, podcasters, musicians, and creators. Take your content to the next level.</p>
</div>
<div class=" justify-center gap-2 py-4 items-center font-semibold flex md:flex-row">
<h1 class="text-golden">LEARN MORE <span><i class="fas fa-chevron-right ml-2" aria-hidden="true"> </i></span></h1>
<button class="bg-golden px-6 py-2 rounded-full text-white hover:bg-white hover:text-golden">BUY NOW</button>
</div>
</div>
</hero>
<!-- NTH-100 SECTION -->
<section class="NTH_100 flex flex-col lg:flex-row font-[Inter] lg:bg-bgsecond bg-cover bg-center md:bg-no-repeat lg:py-4 lg:h-[85vh] h-full w-full">
<div class="flex flex-col lg:py-[65px] lg:px-[65px] lg:basis-1/2 justify-center lg:text-center">
<div>
<img class="py-3" src="./images/NTH-100_PL_P_RGB_01.svg" alt="">
<h1 class="text-[24px] text-center">Your Search For The Perfect Headphones Is Over</h1>
<p class="px-3 text-textcolor">Experience sound like never before with the NTH-100s. Exceptional sonic performance, superior comfort and iconic looks that inspires creativity.</p>
</div>
<div class="flex flex-row justify-center gap-2 py-3 items-center font-semibold">
<h1 class="text-golden">LEARN MORE <span> <i class="fas fa-chevron-right ml-2" aria-hidden="true"> </i></span></h1>
<button class="bg-golden px-6 py-2 rounded-full text-white hover:bg-white hover:text-golden">BUY NOW</button>
</div>
</div>
<div class="lg:basis-1/2">
<img src="./images/nth-usb-bg-sm.jpg" class="lg:hidden w-full content-cover" alt="" srcset="">
</div>
</section>
<!-- NTH-USB SECTION -->
<section class="NTH_100_USB font-[Inter] flex flex-col lg:flex-row-reverse font-[Inter] lg:bg-bgthird bg-cover bg-center md:bg-no-repeat lg:py-4 lg:h-[85vh] h-full w-full">
<div class="flex flex-col lg:py-[65px] lg:px-[65px] lg:basis-1/2 justify-center lg:text-center">
<div>
<img class="py-3" src="./images/NT-USB_PL_P_01.svg" alt="">
<h1 class="text-[24px] text-center ">Studio-Quality Recording, Made Simple</h1>
<p class="px-3 text-textcolor">The NT-USB is a studio-quality USB condenser microphone that offers impeccable audio, elegant looks and premium features, all in an easy-to-use form factor, the NT-USB will have you sounding like a pro in seconds.</p>
</div>
<div class="flex flex-row justify-center gap-2 py-3 items-center font-semibold">
<h1 class="text-golden">LEARN MORE <span> <i class="fas fa-chevron-right ml-2" aria-hidden="true"> </i></span></h1>
<button class="bg-golden px-6 py-2 rounded-full text-white hover:bg-white hover:text-golden">BUY NOW</button>
</div>
</div>
<div class="lg:basis-1/2">
<img src="./images/pod-mic-img.jpg" class="lg:hidden w-full content-cover" alt="" srcset="">
</div>
</section>
<!-- PODMIC SECTION -->
<section class="PODMIC font-[Inter] flex flex-col lg:flex-row font-[Inter] lg:bg-bgfourth bg-cover bg-center md:bg-no-repeat lg:py-4 lg:h-[85vh] h-full w-full">
<div class="flex flex-col lg:py-[65px] lg:px-[65px] lg:basis-1/2 justify-center lg:text-center">
<div>
<img class="py-3 lg:hidden" src="./images/pod-mic.svg" alt="">
<img class="py-3 hidden lg:block" src="./images/PodMic_PL_PI_01.svg" alt="" alt="">
<h1 class="text-[24px] text-center lg:text-white">Broadcast-grade Dynamic Microphone</h1>
<p class="px-3 text-textcolor lg:text-slightwhite">Give your voice that rich, broadcast sound with the PodMic. Perfect for livestreaming, voice-over, podcasting and gameplay.</p>
</div>
<div class="flex justify-center gap-2 py-3 items-center font-semibold">
<h1 class="text-golden">LEARN MORE <span><i class="fas fa-chevron-right ml-2" aria-hidden="true"> </i></span></h1>
<button class="bg-golden px-6 py-2 rounded-full text-white hover:bg-white hover:text-golden">BUY NOW</button>
</div>
</div>
<div class="lg:basis-1/2">
<img src="./images/wireless-go-II-img.jpg" class="lg:hidden w-full content-cover" alt="" srcset="">
</div>
</section>
<!-- WIRELESSGOII SECTION -->
<section class="WIRELESSGOII font-[Inter] font-[Inter] flex flex-col lg:flex-row-reverse font-[Inter] lg:bg-bgfifth bg-cover bg-center md:bg-no-repeat lg:py-4 lg:h-[85vh] h-full w-full">
<div class="flex flex-col lg:py-[65px] lg:px-[65px] lg:basis-1/2 justify-center lg:text-center">
<div>
<img class="py-3 lg:hidden" src="./images/wireless-go-black.svg" alt="">
<img class="py-3 hidden lg:block" src="./images/WIGO_II_PL_PI_01.svg" alt="" alt="">
<h1 class="text-[24px] text-center lg:text-white">Next Generation Wireless Audio</h1>
<p class="px-3 text-textcolor lg:text-slightwhite">The Wireless GO II is the world’s most powerful and versatile wireless microphone. With an unparalleled feature set and ultra-compact form factor, this is next generation wireless audio for every creator.</p>
</div>
<div class="flex justify-center gap-2 py-3 items-center font-semibold">
<h1 class="text-golden">LEARN MORE <span><i class="fas fa-chevron-right ml-2" aria-hidden="true"> </i></span></h1>
<button class="bg-golden px-6 py-2 rounded-full text-white hover:bg-white hover:text-golden">BUY NOW</button>
</div>
</div>
<div class="lg:basis-1/2">
<img src="./images/nt-usb-img.jpg" class="lg:hidden w-full content-cover" alt="" srcset="">
</div>
</section>
<!-- NTH-USB_MINI SECTION -->
<section class="NTH_USB_MINI font-[Inter] font-[Inter] flex flex-col lg:flex-row font-[Inter] lg:bg-bgsixth bg-cover bg-center md:bg-no-repeat lg:py-4 lg:h-[85vh] h-full w-full">
<div class="flex flex-col lg:py-[65px] lg:px-[65px] lg:basis-1/2 justify-center lg:text-center">
<div>
<img class="py-3" src="./images/nt-usb-mini-black.svg" alt="">
<h1 class="text-[24px] text-center lg:text-white">Compact Sound, Incredibly Powerful</h1>
<p class="px-3 text-textcolor lg:text-slightwhite">The NT-USB Mini brings pristine studio sound to a compact USB microphone, and with RØDE Connect unlocking more power, more features and more control, it’s the perfect recording solution for podcasters, gamers and streamers.</p>
</div>
<div class="flex justify-center gap-2 py-3 items-center font-semibold">
<h1 class="text-golden">LEARN MORE <span> <i class="fas fa-chevron-right ml-2" aria-hidden="true"> </i></span></h1>
<button class="bg-golden px-6 py-2 rounded-full text-white hover:bg-white hover:text-golden">BUY NOW</button>
</div>
</div>
</section>
<!-- RODE RANGE -->
<section class="RODE_RANGE my-10 font-[Inter]">
<div>
<h1 class="text-[34px] text-center font-semibold text-textlightcolor my-3">Explore The RØDE Range</h1>
</div>
<div class="bg-[url('./images/microphones.png')] bg-cover m-3 lg:mx-[70px] p-12 lg:p-[80px]">
<h1 class="text-[32px] lg:text-[70px] text-center font-semibold text-white">MICROPHONES</h1>
</div>
<div class="bg-[url('./images/interfaces-and-mixers.jpg')] bg-cover m-3 lg:mx-[70px] p-12 lg:p-[80px] ">
<h1 class="text-[32px] lg:text-[70px] text-center font-semibold text-white">INTERFACES & MIXERS</h1>
</div>
<div class="bg-[url('./images/software.png')] bg-cover m-3 lg:mx-[70px] p-12 lg:p-[80px] ">
<h1 class="text-[32px] lg:text-[70px] text-center font-semibold text-white">SOFTWARE</h1>
</div>
<div class="bg-[url('./images/accessories.png')] bg-cover m-3 lg:mx-[70px] p-12 lg:p-[80px] ">
<h1 class="text-[32px] lg:text-[70px] text-center font-semibold text-white">ACCESSORIES</h1>
</div>
</section>
<!-- RODE BLOG -->
<section class="RODE_RANGE my-10 bg-lightgrey font-[Inter]">
<div>
<h1 class="text-[34px] text-center font-semibold text-golden my-3">Latest From The RØDE Blog</h1>
</div>
<div class="flex flex-col lg:flex-row">
<div>
<div class="bg-lightgrey py-2 ">
<div class="flex flex-col bg-white m-10">
<p class="text-center text-[20px] m-2 font-semibold">The Difference Between Large-Diaphragm and Small-Diaphragm Condenser Microphones</p>
<img class="m-1 lg:h-[538px]" src="./images/thumbnail6.jpeg" alt="">
<p class="text-center px-3 py-1">We explore the difference between large- and small-diaphragm condenser microphones, and what each is best used for.</p>
<div class="flex justify-center">
<a class="bg-golden px-6 py-2 rounded-full text-white text-center hover:bg-transparent hover:text-golden hover:border-2 hover:border-golden my-4 font-semibold content-center">LEARN MORE</a>
</div>
</div>
</div>
<div class="bg-lightgrey py-2 ">
<div class="flex flex-col bg-white m-10">
<p class="text-center text-[20px] m-2 font-semibold">What is a Condenser Microphone and When to Use One</p>
<img class="m-1 lg:h-[538px]" src="./images/thumbnail.jpg" alt="">
<p class="text-center px-3 py-1">Learn more about the different types of condenser mics, how they work and the best applications for using them.</p>
<div class="flex justify-center">
<a class="bg-golden px-6 py-2 rounded-full text-white text-center hover:bg-transparent hover:text-golden hover:border-2 hover:border-golden my-4 font-semibold content-center">LEARN MORE</a>
</div>
</div>
</div>
</div>
<div class="flex flex-col ">
<div class="bg-lightgrey py-2 ">
<div class="flex flex-col bg-white m-10">
<p class="text-center text-[20px] m-2 font-semibold">Firmware Version 1.0.7 for the RØDECaster Pro II is Available Now</p>
<img class="m-1 lg:h-[538px]" src="./images/thumbnai03.jpg" alt="">
<p class="text-center px-10 py-1">Firmware version 1.0.7 includes key feature additions, such as custom routing for USB and Bluetooth outputs, and more.</p>
<div class="flex justify-center">
<a class="bg-golden px-6 py-2 rounded-full text-white text-center hover:bg-transparent hover:text-golden hover:border-2 hover:border-golden my-4 font-semibold content-center">LEARN MORE</a>
</div>
</div>
</div>
<div class="bg-lightgrey py-2 ">
<div class="flex flex-col bg-white m-10">
<p class="text-center text-[20px] m-2 font-semibold">The RØDECaster Pro II Is Shipping Now</p>
<img class="m-1 lg:h-[538px]" src="./images/tumbnail05.jpg" alt="">
<p class="text-center px-10 py-1">The world’s most powerful all-in-one audio solution for content creators is now available worldwide.</p>
<div class="flex justify-center">
<a class="bg-golden px-6 py-2 rounded-full text-white text-center hover:bg-transparent hover:text-golden hover:border-2 hover:border-golden my-4 font-semibold content-center">LEARN MORE</a>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<hr class="my-10">
<div class="flex flex-row justify-around align-start font-[Inter] flex-wrap">
<div class="flex w-screen lg:w-60 items-start justify-center lg:justify-none" >
<img src="./images/footer-logo.svg" class="my-4" alt="" srcset="">
</div>
<div class=" flex flex-row mx-2 gap-[50px]">
<div class="flex flex-col ">
<a class="my-2 font-semibold" href="">Products</a>
<a class="my-2" href="">Microphones</a>
<a class="my-2" href="">Headphones</a>
<a class="my-2" href="">Interfaces and <br> Mixers</a>
<a class="my-2" href="">Accessories</a>
<a class="my-2" href="">Software</a>
<a class="my-2" href="">Apparel</a>
</div>
<div class="flex flex-col ">
<a class="my-2 font-semibold" href="">Support</a>
<a class="my-2" href="">Contact RØDE</a>
<a class="my-2" href="">Service Centre</a>
<a class="my-2" href="">Warranty</a>
<a class="my-2" href="">Where to Buy</a>
</div>
<div class="flex flex-col ">
<a class="my-2 font-semibold" href="">Company</a>
<a class="my-2" href="">About RØDE</a>
<a class="my-2" href="">News and Info</a>
<a class="my-2" href="">Job Opportunities</a>
<a class="my-2 font-semibold" href="">Account</a>
<a class="my-2" href="">Manage your Account</a>
<a class="my-2" href="">Create Account</a>
</div>
</div>
<div class="flex flex-col basics-1 items-center mt-[40px] lg:mt-0 lg:basics-1/5 lg:w-80 lg:items-end sm:justify-items-start flex-wrap">
<h1 class="font-semibold text-2xl text-end">Subscribe to our latest news and offers</h1>
<div class="flex">
<a class="bg-golden px-6 py-2 rounded-full text-white text-center hover:bg-transparent hover:text-golden hover:border-2 hover:border-golden my-4 font-semibold content-center">Sign Up</a>
</div>
</div>
</div>
<hr class="mx-10">
<div class="flex flex-wrap justify-center gap-4 lg:gap-none lg:justify-between px-4 py-12 mx-10">
<div class="order-1">
<p>
© 2022 RØDE All Rights Reserved
</p>
</div>
<div class="text-[14px] gap-3 order-0 lg:order-2">
<a class="cursor-pointer">Privacy Policy</a>
<span>|</span>
<a class="cursor-pointer">Terms & Conditions</a>
</div>
<div class="text-[#ad9970] flex gap-4 lg:order-3">
<div class="w-[24px]">
<ion-icon name="logo-facebook" class="w-[30px] h-[30px] gap:4 cursor-pointer"></ion-icon>
</div>
<div class="w-[24px]">
<ion-icon name="logo-twitter" class="w-[30px] h-[30px] gap:4 cursor-pointer"></ion-icon>
</div>
<div class="w-[24px]">
<ion-icon name="logo-instagram" class="w-[30px] h-[30px] gap:4 cursor-pointer"></ion-icon>
</div>
<div class="w-[24px]">
<ion-icon name="logo-facebook" class="w-[30px] h-[30px] gap:4 cursor-pointer"></ion-icon>
</div>
<div class="w-[24px]">
<ion-icon name="logo-tiktok" class="w-[30px] h-[30px] gap:4 cursor-pointer"></ion-icon>
</div>
</div>
</div>
<hr class="mx-10">
</footer>
</body>
</html>