-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
77 lines (75 loc) · 3.86 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
<!DOCTYPE html>
<html lang="en" class="ic-scroller dark">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Potta+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" />
<title>Zen.</title>
<meta property="og:site_name" content="Zen">
<meta property="og:type" content="website">
<meta name="theme-color" content="#374151">
<meta name="description" content="Zenboard is a productivity app that integrates Eisenhower Matrix, Pomodoro Timer, and part of the Get Things Done (GTD) principles in a unique way, to improve your developer routine">
<meta property="og:title" content="Zen">
<meta property="og:description" content="Zenboard is a productivity app that integrates Eisenhower Matrix, Pomodoro Timer, and part of the Get Things Done (GTD) principles in a unique way, to improve your developer routine">
<meta property="og:url" content="https://zenboard.app">
<meta property="og:image" content="https://zenboard.app/zenboard.png" />
<meta property="og:locale" content="en">
<meta property="twitter:title" content="Zen">
<meta property="twitter:description" content="Zenboard is a productivity app that integrates Eisenhower Matrix, Pomodoro Timer, and part of the Get Things Done (GTD) principles in a unique way, to improve your developer routine">
<meta name="twitter:site" content="@zenboard_app">
<meta name="twitter:domain" content="zenboard.app">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:image" content="https://zenboard.app/zenboard.png" />
<meta name="twitter:image:alt" content="zenboard">
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Organization",
"name": "Zen",
"logo": "https://www.gstatic.com/devrel-devsite/prod/v1674d466be3b1154327dd11cf186e748303b1e92ae31ff35df0f5192fbd777ea/firebase/images/touchicon-180.png",
"url": "https://zenboard.app"
}
</script>
<!-- <script src="https://cdn.paddle.com/paddle/paddle.js"></script>
<script type="text/javascript">
Paddle.Setup({ vendor: 141286 });
</script> -->
<script async defer src="https://apis.google.com/js/api.js"></script>
<script src="https://www.google.com/recaptcha/api.js?render=6Lcwaz4lAAAAAPn4-MHWd-a86wvu6XLeT_qL62SM"></script>
<script>
function onSubmit(token) {
document.getElementById("demo-form").submit();
}
</script>
<script async defer src="https://accounts.google.com/gsi/client" ></script>
</head>
<body>
<div id="app"></div>
<script>
// @see https://docs.headwayapp.co/widget for more configuration options.
var HW_config = {
selector: ".changelog", // CSS selector where to inject the badge
account: "yBAKZJ",
callbacks: {
onWidgetReady: function(widget) {
},
onShowWidget: function(){
},
onShowDetails: function(changelog){
},
onReadMore: function(changelog){
},
onHideWidget: function(){
}
}
}
</script>
<script async src="https://cdn.headwayapp.co/widget.js"></script>
<script src="https://apis.google.com/js/api.js"></script>
<script type="module" src="/src/main.js"></script>
</body>
</html>