-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
75 lines (74 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Make your screenshot/image more professional by rotating, adding shadow and more."
/>
<link rel="icon" type="image/png" href="./static/favicon.png" />
<link rel="icon" type="image/x-icon" href="./static/favicon.ico" />
<title>Limus | Transform image to be more professional</title>
<style>
html,
body {
padding: 0;
margin: 0;
}
html,
body,
#app {
width: 100%;
height: 100%;
}
</style>
<link
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
crossorigin="anonymous"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:description"
content="Make your screenshot/image more professional by rotating, adding shadow and more."
/>
<meta
name="twitter:title"
content="Limus | Transform image to be more professional"
/>
<meta name="twitter:site" content="@ZeroX_Hung" />
<meta name="twitter:image" content="https://limus.netlify.app/banner.png" />
<meta name="twitter:creator" content="@ZeroX_Hung" />
<meta
property="og:title"
content="Limus | Transform image to be more professional"
/>
<meta
property="og:description"
content="Make your screenshot/image more professional by rotating, adding shadow and more."
/>
<meta name="og:image" content="https://limus.netlify.app/banner.png" />
</head>
<body>
<div id="app"></div>
<script src="src/index.tsx"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-123395923-5"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-123395923-5");
</script>
</body>
</html>