-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
675 lines (669 loc) · 33 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
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/assets-homepage/css/style.css" />
<link
rel="icon"
type="image/x-icon"
sizes="256x256"
href="/assets-homepage/img/favicon.ico"
/>
<title>Clickette</title>
<link rel="canonical" href="https://clickette.org/" />
<meta property="og:url" content="https://clickette.org/" />
<meta
name="twitter:description"
content="The next generation file storage - Packed with features and a great dashboard. What more could you want?"
/>
<meta
name="twitter:image"
content="https://clickette.org/assets-homepage/img/clickette-portrait.png"
/>
<meta
property="og:image"
content="https://clickette.org/assets-homepage/img/clickette-front.png"
/>
<meta
name="description"
content="The next generation file storage - Packed with features and a great dashboard. What more could you want?"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Clickette" />
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "Clickette",
"url": "https://clickette.org"
}
</script>
<style>
:root {
color-scheme: dark;
}
</style>
<link rel="manifest" href="/manifest.json" />
<link rel="stylesheet" href="/assets-homepage/css/inter.css" />
</head>
<body class="bg-black">
<!-- header -->
<div class="justify-center bg-black mx-auto w-full">
<div
x-data="{ open: false }"
class="flex md:flex-row flex-col md:justify-between md:items-center mx-auto px-8 md:px-12 lg:px-32 py-2 w-full max-w-7xl"
>
<div
class="flex flex-row justify-between items-center text-white"
>
<a
class="inline-flex items-center gap-6 font-bold text-white text-xl tracking-tight"
href="/"
>
<img
src="/assets-homepage/img/wordmark-white.svg"
style="height: 23px"
/>
</a>
<button
class="md:hidden focus:shadow-outline rounded-lg focus:outline-none"
@click="open = !open"
>
<svg
class="w-6 h-6"
stroke="#fff"
fill="none"
viewBox="0 0 24 24"
>
<path
:class="{'hidden': open, 'inline-flex': !open }"
class="inline-flex"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M4 6h16M4 12h16M4 18h16"
></path>
<path
:class="{'hidden': !open, 'inline-flex': open }"
class="hidden"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M6 18L18 6M6 6l12 12"
></path>
</svg>
</button>
</div>
<nav
:class="{'flex': open, 'hidden': !open}"
class="md:flex md:flex-row flex-col flex-grow md:justify-start items-center gap-6 hidden md:mt-0 px-5 md:px-0 p-4 lg:p-0 font-medium text-sm text-stone-400"
>
<a
class="hover:text-white transition-all focus:outline-none md:ml-auto text-stone-400"
href="/terms"
>Terms of Service
</a>
<a
class="hover:text-white transition-all focus:outline-none text-stone-400"
href="/privacy"
>Privacy Policy
</a>
<a
class="inline-flex justify-center items-center gap-6 bg-stone-900 hover:bg-stone-700 px-5 py-3 rounded-lg focus:ring-2 focus:ring-black focus:ring-offset-2 w-full md:w-auto h-8 font-medium text-white text-xs duration-200"
href="/dashboard"
role="button"
>
Dashboard
</a>
</nav>
</div>
</div>
<div class="justify-center max-sm:hidden bg-stone-100 mx-auto w-full">
<div
class="flex justify-center items-center bg-stone-900 h-12 text-white"
>
<div class="flex justify-center items-center gap-4">
<div class="font-medium text-xs">
<span
>Glyphin is out now - Your Discord servers swiss
army knife</span
>
</div>
<div class="sm:block hidden bg-stone-600 w-px h-6"></div>
<div>
<a
class="flex justify-center items-center bg-gradient-to-b from-white/[.105] to-white/[.15] hover:to-white/[.25] px-4 py-2 rounded-lg ring-1 ring-white/20 ring-inset h-8 font-semibold text-white text-xs transition-all"
href="https://glyphin.hamium.xyz"
>Learn more →</a
>
</div>
</div>
</div>
</div>
<!-- content -->
<section>
<div
class="bg-black mx-auto px-8 md:px-12 lg:px-32 py-24 max-w-7xl"
style="
background-image: radial-gradient(
circle farthest-side at center top,
hsla(23, 100%, 50%, 0.57) 0%,
hsl(0, 0%, 0%) 50%,
hsl(0, 0%, 0%) 100%
);
"
>
<div class="text-center">
<h1
class="font-bold text-4xl text-balance text-white lg:text-5xl tracking-tighter"
>
The most private<br />
file management solution
</h1>
<p
class="mx-auto mt-4 w-1/2 font-medium text-balance text-base text-stone-400"
>
A streamlined solution to your file management needs,
with a beautiful dashboard. Easy to manage, share and
use.
</p>
<div
class="flex md:flex-row flex-col justify-center items-center gap-2 mx-auto mt-8"
>
<button
class="inline-flex justify-center items-center gap-6 border-2 bg-transparent px-5 py-3 rounded-xl focus:ring-2 focus:ring-offset-2 w-full md:w-auto h-12 font-medium text-white duration-300 hovergradientp"
style="
border-color: hsla(23, 100%, 50%, 50%);
box-shadow: inset -1px 45px 20px -40px
hsla(23, 100%, 50%, 50%);
"
aria-label="Get Started"
onclick="document.location.replace('/dashboard')"
>
<a href="/dashboard">Get Started</a>
</button>
<button
class="inline-flex justify-center items-center gap-6 border-2 px-5 py-3 rounded-xl focus:ring-2 focus:ring-offset-2 w-full md:w-auto h-12 font-medium text-white duration-300 hovergradients"
style="
border-color: hsla(0, 0%, 79%, 50%);
box-shadow: inset -1px 45px 20px -40px
hsla(0, 0%, 79%, 0.5);
"
aria-label="GitHub"
onclick="window.open('https://github.com/clickette')"
>
<a
href="https://github.com/clickette"
target="_blank"
>GitHub</a
>
</button>
</div>
<div
class="relative mt-24 p-2 rounded-2xl h-full overflow-hidden"
>
<img
src="/assets-homepage/img/screenshot.png"
class="shadow-2xl rounded-2xl h-full object-cover"
/>
<div
name="gradient"
class="bg-black -mt-48 mr-auto ml-auto w-full h-80"
style="
background-image: radial-gradient(
ellipse farthest-side at center,
hsla(23, 100%, 50%, 0.239) 0%,
hsl(0, 0%, 0%) 100%
);
"
></div>
</div>
</div>
</div>
</section>
<section>
<div class="mx-auto -mt-48 px-8 md:px-12 lg:px-32 py-24 max-w-7xl">
<div class="text-center">
<h1
class="font-bold text-4xl text-balance text-white lg:text-5xl tracking-tighter"
>
Exactly what you need,<br />when you need it.
</h1>
<p
class="mt-4 font-medium text-balance text-base text-white"
>
A beautiful dashboard to manage your files, share them
with others and keep them safe.
</p>
<div
class="gap-x-6 gap-y-12 lg:gap-x-8 lg:gap-y-16 grid grid-cols-2 lg:grid-cols-4 mt-12 lg:mt-16 text-center"
>
<div>
<div>
<span
class="flex justify-center items-center bg-stone-900 mx-auto rounded-full size-12"
><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-link-plus"
width="24"
height="24"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="#ffffff"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path d="M9 15l6 -6" />
<path
d="M11 6l.463 -.536a5 5 0 0 1 7.072 0a4.993 4.993 0 0 1 -.001 7.072"
/>
<path
d="M12.603 18.534a5.07 5.07 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463"
/>
<path d="M16 19h6" />
<path d="M19 16v6" />
</svg>
</span>
</div>
<div class="mt-6">
<h3 class="font-medium text-white">
URL Shortening
</h3>
<p class="mt-2 text-sm text-white">
Shorten URLs with Clickette with vanities
and maximum views.
</p>
</div>
</div>
<div>
<div>
<span
class="flex justify-center items-center bg-stone-900 mx-auto rounded-full size-12"
><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-lock"
width="24"
height="24"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="#ffffff"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z"
/>
<path
d="M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"
/>
<path d="M8 11v-4a4 4 0 1 1 8 0v4" />
</svg>
</span>
</div>
<div class="mt-6">
<h3 class="font-medium text-white">
Password Protection
</h3>
<p class="mt-2 text-sm text-white">
Protect your uploads safely with a password.
</p>
</div>
</div>
<div>
<div>
<span
class="flex justify-center items-center bg-stone-900 mx-auto rounded-full size-12"
><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-folder-open"
width="24"
height="24"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="#ffffff"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M5 19l2.757 -7.351a1 1 0 0 1 .936 -.649h12.307a1 1 0 0 1 .986 1.164l-.996 5.211a2 2 0 0 1 -1.964 1.625h-14.026a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2"
/>
</svg>
</span>
</div>
<div class="mt-6">
<h3 class="font-medium text-white">
Folder Management
</h3>
<p class="mt-2 text-sm text-white">
Organize your favorite uploads with folders.
</p>
</div>
</div>
<div>
<div>
<span
class="flex justify-center items-center bg-stone-900 mx-auto rounded-full size-12"
><svg
xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-bolt"
width="24"
height="24"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="#ffffff"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M13 3l0 7l6 0l-8 11l0 -7l-6 0l8 -11"
/>
</svg>
</span>
</div>
<div class="mt-6">
<h3 class="font-medium text-white">
Powered by Zipline
</h3>
<p class="mt-2 text-sm text-white">
Built on top of Zipline, the most secure
file management solution.
<span class="font-semibold text-stone-400"
>Custom software coming soon</span
>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="mx-auto px-8 md:px-12 lg:px-32 py-24 max-w-7xl">
<div>
<p class="font-bold text-4xl text-white tracking-tighter">
Frequently Asked Questions
</p>
<p class="mt-4 font-medium text-base text-stone-400">
Answers to commonly asked questions about our platform.
</p>
</div>
<dl class="gap-12 grid lg:grid-cols-2 mt-12">
<div>
<dt class="font-medium text-lg text-white">
What is Clickette?
</dt>
<dd class="mt-2 font-medium text-base text-stone-400">
Clickette is a cutting-edge file storage platform,
akin to GoFile, providing seamless solutions for
storing and managing your files effortlessly.
</dd>
</div>
<div>
<dt class="font-medium text-lg text-white">
How much does Clickette cost?
</dt>
<dd class="mt-2 font-medium text-base text-stone-400">
Clickette is entirely free to use. We believe in
providing a robust content storage and distribution
platform without any cost barriers.
</dd>
</div>
<div>
<dt class="font-medium text-lg text-white">
What's the file size limit?
</dt>
<dd class="mt-2 font-medium text-base text-stone-400">
Clickette boasts an unlimited file size limit,
ensuring you can store and share files of any size
without constraints.
</dd>
</div>
<div>
<dt class="font-medium text-lg text-white">
Does Clickette respect my privacy?
</dt>
<dd class="mt-2 font-medium text-base text-stone-400">
Absolutely. At Clickette, we prioritize your privacy
and security. Your data is kept confidential and is
never shared with third parties.
</dd>
</div>
<div>
<dt class="font-medium text-lg text-white">
What types of files can I upload?
</dt>
<dd class="mt-2 font-medium text-base text-stone-400">
You're welcome to upload any file type as long as it
adheres to legal standards and doesn't violate
Clickette's terms of service.
</dd>
</div>
</dl>
</div>
</section>
<section class="bg-transparent lg:h-1/2">
<div class="lg:flex mx-auto px-8 md:px-12 lg:px-32 py-24 max-w-7xl">
<div class="lg:w-1/2">
<div class="top-0 -pt-8 pb-16">
<div>
<div class="md:pr-12 lg:pr-24">
<div>
<h1
class="font-bold text-4xl text-white tracking-tighter"
>
What are you even waiting for?
</h1>
<p
class="mt-4 font-medium text-balance text-base text-stone-400"
>
Get started with Clickette today and
experience the future of file storage.
</p>
<div
class="flex md:flex-row flex-col items-center gap-2 mx-auto mt-8"
>
<button
class="inline-flex justify-center items-center gap-3 border-2 px-5 py-3 rounded-xl focus:ring-2 focus:ring-black focus:ring-offset-2 w-full md:w-auto h-12 font-medium text-white duration-200 hovergradientp"
aria-label="Primary action"
style="
border-color: hsla(
23,
100%,
50%,
50%
);
box-shadow: inset -1px 45px 20px -40px
hsla(23, 100%, 50%, 50%);
"
onclick="document.location.replace('/dashboard')"
>
<a href="/dashboard">
Get Started
</a>
</button>
<button
class="inline-flex justify-center items-center gap-3 border-2 px-5 py-3 rounded-xl focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 w-full md:w-auto h-12 font-medium duration-200 hovergradients"
aria-label="Secondary action"
style="
border-color: hsla(
0,
0%,
79%,
50%
);
box-shadow: inset -1px 45px 20px -40px
hsla(0, 0%, 79%, 0.5);
"
onclick="window.open('https://github.com/clickette')"
>
<a
href="https://github.com/clickette"
target="_blank"
>
GitHub
</a>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="lg:block hidden lg:w-1/2">
<div class="flex-shrink-0">
<div>
<ul
class="gap-12 grid grid-cols-1 mt-6 lg:mt-0 font-medium text-balance text-base text-gray-500 list-none"
role="list"
>
<img
src="/assets-homepage/img/clickette-front.png"
class="shadow-2xl rounded-2xl w-full h-80 object-cover"
/>
</ul>
<div
name="gradient"
class="bg-black -mt-48 mr-auto ml-auto w-full h-80"
style="
background-image: radial-gradient(
ellipse farthest-side at center,
hsla(23, 100%, 50%, 0.239) 0%,
hsla(0, 0%, 0%, 0) 100%
);
"
></div>
</div>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer>
<div
class="-m-24 mx-auto px-8 md:px-12 lg:px-32 py-12 max-w-full"
style="
background: rgb(255, 98, 0);
background: linear-gradient(
0deg,
rgba(255, 98, 0, 0.132) 0%,
rgba(0, 0, 0, 1) 100%
);
"
>
<div class="xl:gap-8 xl:grid xl:grid-cols-3">
<div>
<img
src="/assets-homepage/img/wordmark-white.svg"
style="height: 23px"
/>
<p
class="mt-2 lg:w-4/5 font-medium text-sm text-stone-400"
>
The best file management solution.
</p>
</div>
<div
class="gap-8 grid grid-cols-2 lg:grid-cols-3 xl:col-span-2 mt-12 lg:mt-0 font-medium text-sm text-stone-400"
>
<div>
<h3 class="text-base text-white">Information</h3>
<ul role="list" class="space-y-2 mt-4">
<li>
<a
href="/terms"
class="hover:text-white"
target="_blank"
>
Terms of Service
</a>
</li>
<li>
<a
href="/privacy"
class="hover:text-white"
target="_blank"
>
Privacy Policy
</a>
</li>
<li>
<a
href="https://clickette.instatus.com"
class="hover:text-white"
target="_blank"
>
Status
</a>
</li>
</ul>
</div>
<div>
<h3 class="text-base text-white">Services</h3>
<ul role="list" class="space-y-2 mt-4">
<li>
<a
href="/"
class="hover:text-white"
target="_blank"
>
Vault
</a>
</li>
<li>
<a
href="https://glyphin.hamium.xyz"
class="hover:text-white"
target="_blank"
>
Glyphin
</a>
</li>
</ul>
</div>
</div>
</div>
<div
class="flex md:flex-row flex-col md:justify-between md:items-center pt-12"
x-data="{ year: new Date().getFullYear() }"
>
<span class="font-medium text-sm text-stone-400">
Copyright © <span x-text="year">2024</span>
<a
aria-label="Team Clickette"
href="https://team.clickette.org"
class="mx-2 text-blue-400 hover:text-stone-400"
>Team Clickette</a
>
</span>
</div>
</div>
</footer>
<script defer src="/assets-homepage/js/alpine.js"></script>
<!-- <script src="/assets-homepage/js/tailwind.js"></script> -->
</body>
</html>