forked from riccardoperra/codeimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (73 loc) · 3.1 KB
/
index.html
File metadata and controls
82 lines (73 loc) · 3.1 KB
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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='theme-color'>
<meta name='apple-mobile-web-app-status-bar-style' content='dark-content'>
<link rel='icon' href='/assets/favicon.svg' type='image/svg+xml'>
<link rel='preconnect' href='https://fonts.googleapis.com'>
<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin='anonymous'>
<link rel='preload' href='/assets/codeimage-logo-white.svg' as='image' type='image/svg+xml'>
<meta name='viewport'
content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover'>
<link
href='https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600&family=Overpass+Mono:wght@400;500;600&family=Source+Code+Pro:wght@400;500;600&family=Space+Mono:ital,wght@0,400;0,700;1,700&display=swap'
rel='stylesheet'
media='print' onload="this.onload=null;this.removeAttribute('media');"
as='font'
fetchpriority='low'
crossorigin>
<!-- Primary Meta Tags -->
<title>CodeImage | Create elegant screenshots of your source code</title>
<meta name='title' content='CodeImage | Create elegant screenshots of your source code'>
<meta name='description'
content='CodeImage is the next-gen tool to help developers to create and share beautiful screenshots of their source code'>
<!-- Open Graph / Facebook -->
<meta property='og:type' content='website'>
<meta property='og:url' content='https://codeimage.dev/'>
<meta property='og:title' content='CodeImage | Create elegant screenshots of your source code'>
<meta property='og:description'
content='CodeImage is the next-gen tool to help developers to create and share beautiful screenshots of their source code'>
<meta property='og:image' content='/assets/codeimage-card.png'>
<!-- Twitter -->
<meta property='twitter:card' content='summary_large_image'>
<meta property='twitter:url' content='https://codeimage.dev/'>
<meta property='twitter:title' content='CodeImage | Create elegant screenshots of your source code'>
<meta property='twitter:description'
content='CodeImage is the next-gen tool to help developers to create and share beautiful screenshots of their source code'>
<meta property='twitter:image' content='/assets/codeimage-card.png'>
<link rel='apple-touch-icon' href='/pwa/apple-icon-180.png'>
<meta name='apple-mobile-web-app-capable' content='yes'>
<!-- %UMAMI% -->
<style>
html, body {
margin: 0
}
body {
background-color: #111111
}
.launcher {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
position: fixed;
width: 100%;
background-color: #111111;
}
.launcher img {
opacity: .25;
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id='root'>
<div id='launcher' class='launcher'>
<img width='240px' src='/assets/codeimage-logo-white.svg' alt='logo' />
</div>
</div>
<script src='/src/index.tsx' type='module'></script>
</body>
</html>