-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
32 lines (31 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="og:title" content="HardTail" />
<meta name="og:description" content="Template for building SolidJS web application with Tailwind CSS faster!" />
<meta name="og:image" content="" />
<meta name="og:type" content="website" />
<meta name="keywords" content="solidjs" />
<link rel="icon" href="/public/logo.png">
<title>HardTail</title>
<!-- Fontawesome scripts -->
<script src="https://kit.fontawesome.com/7d6dd3f7f2.js" crossorigin="anonymous"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
<!-- Ko-fi scripts -->
<script src='https://storage.ko-fi.com/cdn/scripts/overlay-widget.js'></script>
<script>
kofiWidgetOverlay.draw('tinarskii', {
'type': 'floating-chat',
'floating-chat.donateButton.text': 'Donate Me',
'floating-chat.donateButton.background-color': '#0424e8',
'floating-chat.donateButton.text-color': '#fff'
});
</script>
</html>