-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (33 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>PSCS Clicker</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:type" content="website">
<meta property="og:title" content="PSCSClicker" />
<meta property="og:description" content="Cookieclicker but for PSCS." />
<meta property="og:image" content="img/icon.jpg" />
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
<link id='favicon' rel="icon" type="image/jpg" href="img/icon.jpg" />
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<!-- <script src="https://www.gstatic.com/firebasejs/5.5.8/firebase.js" defer></script> -->
<!-- firebase stuff should go here -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js" defer></script>
<script src="main.js" defer></script>
</head>
<body>
<div id="app">
<stat-area></stat-area>
<click-area></click-area>
<store-area></store-area>
<news-area></news-area>
<div id="links">
<a target="_blank" href="https://github.com/coderLads/pscsclicker">GitHub</a>
<a target="_blank" href="https://github.com/coderLads/pscsclicker/issues/new">Submit an issue</a>
</div>
</div>
</body>
</html>