-
Notifications
You must be signed in to change notification settings - Fork 203
/
index.html
145 lines (137 loc) · 4.84 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/[email protected]" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes">
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta
name="viewport"
content="width=device-width, height=device-height, initial-scale=1, maximum-scale=1"
/>
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Free online design editor. Create images for social media, youtube previews, facebook covers"
/>
<link rel="apple-touch-icon" href="/logo.png" />
<!-- SOCIAL DATA -->
<meta
property="og:title"
content="Polotno Studio - Online Free Design Editor"
/>
<meta
property="og:description"
content="Create graphical designs for social media, youtube previews, facebook covers and more"
/>
<meta
property="og:image"
content="https://studio.polotno.com/studio-polotno-preview.jpg"
/>
<meta property="og:url" content="https://studio.polotno.com/" />
<meta name="twitter:card" content="summary_large_image" />
<!-- STYLES -->
<link
href="https://unpkg.com/@blueprintjs/core@5/lib/css/blueprint.css"
rel="stylesheet"
/>
<script src="https://js.puter.com/v2/"></script>
<script type="text/javascript">
!(function (e, t) {
((e = t.createElement('script')).src =
'https://cdn.convertbox.com/convertbox/js/embed.js'),
(e.id = 'app-convertbox-script'),
(e.async = true),
(e.dataset.uuid = 'db9e320b-6d6c-49c4-ba5c-b29e6d5fc91c'),
document.getElementsByTagName('head')[0].appendChild(e);
})(window, document);
</script>
<style>
html {
min-height: -webkit-fill-available;
}
body {
padding: 0;
margin: 0;
background-color: #2f343c;
padding-bottom: env(safe-area-inset-bottom);
}
.bp5-dark #root {
background-color: #2f343c;
}
#root {
width: 100vw;
height: 100%;
}
@media (max-width: 500px) {
.bp5-dark .bp5-navbar {
box-shadow: none;
}
}
</style>
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/manifest.json" />
<!--
Notice the use of in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Polotno Studio - Make graphical designs</title>
<!-- <script
src="https://browser.sentry-cdn.com/7.33.0/bundle.tracing.replay.min.js"
integrity="sha384-r6F+mzvQDMgIeW691qWNnOMWoxI4prCcX+pFIwb6xkPCDFt7F82JhTgU1uvDLdgR"
crossorigin="anonymous"
></script>
<script>
Sentry.init({
dsn: 'https://[email protected]/4504571570749440',
integrations: [
// new Sentry.BrowserTracing(),
new Sentry.Integrations.Replay(),
],
// Set tracesSampleRate to 1.0 to capture 100%
// of transactions for performance monitoring.
// We recommend adjusting this value in production
tracesSampleRate: 1.0,
});
// You can do the same thing using `addGlobalEventProcessor`
Sentry.addGlobalEventProcessor(function (event, hint) {
// Add anything to the event here
// returning `null` will drop the event
console.log(1);
event.store = window.store.toJSON();
return event;
});
</script> -->
</head>
<body class="bp5-dark">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
<script type="module" src="/src/index.jsx"></script>
<script
async
defer
data-domain="%VITE_PLAUSIBLE_DOMAIN%"
src="https://plausible.io/js/script.tagged-events.js"
></script>
</body>
</html>