-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
101 lines (98 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/svg+xml" href="/solid.svg" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap"
/>
<title>Solid Template</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
class="hidden"
>
<defs>
<!-- #region icon-solidjs -->
<symbol id="icon-solidjs" viewBox="0 0 166 155.3">
<path
d="M163 35S110-4 69 5l-3 1c-6 2-11 5-14 9l-2 3-15 26 26 5c11 7 25 10 38 7l46 9 18-30z"
fill="#76b3e1"
/>
<linearGradient id="a" gradientUnits="userSpaceOnUse" x1="27.5" y1="3" x2="152" y2="63.5">
<stop offset=".1" stop-color="#76b3e1" />
<stop offset=".3" stop-color="#dcf2fd" />
<stop offset="1" stop-color="#76b3e1" />
</linearGradient>
<path
d="M163 35S110-4 69 5l-3 1c-6 2-11 5-14 9l-2 3-15 26 26 5c11 7 25 10 38 7l46 9 18-30z"
opacity=".3"
fill="url(#a)"
/>
<path
d="M52 35l-4 1c-17 5-22 21-13 35 10 13 31 20 48 15l62-21S92 26 52 35z"
fill="#518ac8"
/>
<linearGradient
id="b"
gradientUnits="userSpaceOnUse"
x1="95.8"
y1="32.6"
x2="74"
y2="105.2"
>
<stop offset="0" stop-color="#76b3e1" />
<stop offset=".5" stop-color="#4377bb" />
<stop offset="1" stop-color="#1f3b77" />
</linearGradient>
<path
d="M52 35l-4 1c-17 5-22 21-13 35 10 13 31 20 48 15l62-21S92 26 52 35z"
opacity=".3"
fill="url(#b)"
/>
<linearGradient
id="c"
gradientUnits="userSpaceOnUse"
x1="18.4"
y1="64.2"
x2="144.3"
y2="149.8"
>
<stop offset="0" stop-color="#315aa9" />
<stop offset=".5" stop-color="#518ac8" />
<stop offset="1" stop-color="#315aa9" />
</linearGradient>
<path
d="M134 80a45 45 0 00-48-15L24 85 4 120l112 19 20-36c4-7 3-15-2-23z"
fill="url(#c)"
/>
<linearGradient
id="d"
gradientUnits="userSpaceOnUse"
x1="75.2"
y1="74.5"
x2="24.4"
y2="260.8"
>
<stop offset="0" stop-color="#4377bb" />
<stop offset=".5" stop-color="#1a336b" />
<stop offset="1" stop-color="#1a336b" />
</linearGradient>
<path
d="M114 115a45 45 0 00-48-15L4 120s53 40 94 30l3-1c17-5 23-21 13-34z"
fill="url(#d)"
/>
</symbol>
<!-- #endregion -->
</defs>
</svg>
<div id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>