-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (49 loc) · 3.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="icon" href="/imgs/socket-conveyor-logo.svg"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Socket Conveyor</title>
<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=Archivo+Black&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap"
rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div id="loading" class="w-screen h-screen flex items-center justify-center">
<svg class="w-60 m-auto" style="shape-rendering: auto;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid"><circle cx="50" cy="50" r="32" stroke-width="8" stroke="#93dbe9" stroke-dasharray="50.26548245743669 50.26548245743669" fill="none" stroke-linecap="round"><animateTransform attributeName="transform" type="rotate" dur="1s" repeatCount="indefinite" keyTimes="0;1" values="0 50 50;360 50 50"></animateTransform>
</circle><circle cx="50" cy="50" r="23" stroke-width="8" stroke="#689cc5" stroke-dasharray="36.12831551628262 36.12831551628262" stroke-dashoffset="36.12831551628262" fill="none" stroke-linecap="round"><animateTransform attributeName="transform" type="rotate" dur="1s" repeatCount="indefinite" keyTimes="0;1" values="0 50 50;-360 50 50"></animateTransform></circle><!-- [ldio] generated by https://loading.io/ --></svg>
</div>
<div id="app" class="h-full w-full flex items-center justify-center hidden">
<div class="flex flex-col md:flex-row-reverse w-[90%] h-full max-w-4xl mx-auto box-border">
<div class="w-full md:w-1/2 h-auto md:h-full my-6 md:my-0 flex items-center justify-center">
<img class="max-w-[150px] md:max-w-[350px] max-h-full" v-bind:src="logo"/>
</div>
<div class="w-full md:w-1/2 min-h-[300px] flex items-center justify-center flex-col">
<div class="text-center md:text-left w-auto">
<h1 class="kanata-header text-4xl md:text-5xl">{{ title }}</h1>
<h2 class="hidden md:block text-xl mt-6 tracking-normal" v-html="subtitle"></h2>
<h2 class="block md:hidden text-xl mt-4 tracking-wide" v-html="subtitle_mobile"></h2>
<div class="flex mt-8 mb-4">
<div class="border-b w-1/3" :class="'border-[' + color + ']'"></div>
<div class="w-1/3"></div>
<div class="border-b w-1/3" :class="'border-[' + color + ']'"></div>
</div>
<div v-for="(link, index) in links">
<a class="flex gap-4 my-8 group" :class="'text-[' + color + ']'" target="_blank" v-bind:href="link.href">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M4.5 19.5l15-15m0 0H8.25m11.25 0v11.25"/>
</svg>
<span class="tracking-widest" v-html="link.text"></span>
</a>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>