forked from schedule-x/schedule-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (54 loc) · 1.27 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite Preact TS</title>
<style>
* {
font-family: 'Open Sans', sans-serif;
}
a {
color: #1976d2;
text-decoration: none;
cursor: pointer;
transition: color 0.2s;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 1rem;
font-size: 1.25rem;
}
li span {
margin-left: 0.5rem;
}
</style>
</head>
<body>
<nav style="margin: 0 auto; width: fit-content">
<h1>Dev pages</h1>
<ul>
<li>
<a href="/development/date-picker/index.html"
>📅 <span>Date picker</span></a
>
</li>
<li>
<a href="/development/calendar/index.html"
>🗓 <span>Calendar</span></a
>
</li>
<li>
<a href="/development/time-picker/index.html"
>🕰 <span>Time picker</span></a
>
</li>
</ul>
</nav>
<script type="module" src="/development/main.tsx"></script>
</body>
</html>