-
Notifications
You must be signed in to change notification settings - Fork 66
/
404.html
93 lines (89 loc) · 4.12 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>QuickBill</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Free and Simple invoicing for freelancers and businesses.">
<meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1'>
<link rel="manifest" href="./manifest.json">
<link rel="canonical" href="https://PunitGr.github.io/QuickBill/">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="QuickBill">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="QuickBill">
<link rel="icon" sizes="192x192" href="assets/images/icon.png">
<link rel="apple-touch-icon" href="assets/images/icon.png">
<meta name="msapplication-TileImage" content="assets/images/icon.png">
<meta name="msapplication-TileColor" content="#5564f5">
<link rel="icon" href="assets/images/favicon.ico" type="image/x-icon">
<meta name="theme-color" content="#5564f5">
<meta property="og:title" content="QuickBill">
<meta property="og:type" content="website">
<meta property="og:image" content="https://PunitGr.github.io/QuickBill/assets/images/icon.png">
<meta property="og:url" content="https://PunitGr.github.io/QuickBill/">
<meta property="og:description" content="Free and Simple invoicing for freelancers and businesses.">
<meta name="twitter:card" content="summary">
<meta name="twitter:url" content="https://PunitGr.github.io/QuickBill/">
<meta name="twitter:title" content="QuickBill">
<meta name="twitter:description" content="The best and easiest way to create free invoices for freelancers and businesses. No install or signup required, just use it right away in your browser!">
<meta name="twitter:image" content="https://PunitGr.github.io/QuickBill/assets/images/icon.png">
<meta name="twitter:creator" content="@punitgr">
<link rel="stylesheet" href="assets/css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<style>
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
@keyframes octocat-wave {
0%,
100% {
transform: rotate(0)
}
20%,
60% {
transform: rotate(-25deg)
}
40%,
80% {
transform: rotate(10deg)
}
}
@media (max-width:500px) {
.github-corner:hover .octo-arm {
animation: none
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
}
</style>
</head>
<body>
<div id="app"></div>
<script src="dist/index.bundle.js"></script>
<script async defer src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script async defer src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.min.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('service-worker.js').then((registration) => {
console.log("ServiceWorker Registration successful with scope: ", registration.scope);
}, (err) => {
console.log("Service Worker registration failed");
}).catch((err) => {
console.log(err);
});
navigator.serviceWorker.ready.then(function(registration) {
console.log('Service Worker Ready');
});
});
} else {
console.log("Service Worker is not supported");
}
</script>
</body>
</html>