2023-04-02 20:23:20 +02:00
|
|
|
// This is where the modification of the html has to be done
|
|
|
|
export default `<!DOCTYPE html>
|
2021-06-13 18:11:25 +02:00
|
|
|
<html lang="en">
|
2021-06-14 19:21:45 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2023-09-24 10:28:01 +02:00
|
|
|
<title>Hemmelig.app - Paste a password, confidential message, or private data.</title>
|
2021-06-13 18:11:25 +02:00
|
|
|
|
2024-03-11 13:43:20 +01:00
|
|
|
<link rel="icon" href="/static/favicon.ico" />
|
|
|
|
<link rel="shortcut icon" href="/static/favicon.ico" />
|
2022-10-02 20:46:22 +05:30
|
|
|
|
2024-03-11 13:43:20 +01:00
|
|
|
<link rel="manifest" href="/static/manifest.json" />
|
2021-06-13 18:11:25 +02:00
|
|
|
<!-- Primary Meta Tags -->
|
2023-09-24 10:28:01 +02:00
|
|
|
<meta name="title" content="Paste a password, confidential message, or private data." />
|
2021-06-14 19:21:45 +02:00
|
|
|
<meta
|
|
|
|
name="description"
|
2023-09-24 10:28:01 +02:00
|
|
|
content="Ensure your sensitive data remains encrypted, secure, and confidential."
|
2021-06-14 19:21:45 +02:00
|
|
|
/>
|
|
|
|
|
2021-06-13 18:11:25 +02:00
|
|
|
<!-- Open Graph / Facebook -->
|
2021-06-14 19:21:45 +02:00
|
|
|
<meta property="og:type" content="website" />
|
|
|
|
<meta property="og:url" content="https://www.hemmelig.app/" />
|
|
|
|
<meta
|
|
|
|
property="og:title"
|
2023-09-24 10:28:01 +02:00
|
|
|
content="Paste a password, confidential message, or private data."
|
2021-06-14 19:21:45 +02:00
|
|
|
/>
|
|
|
|
<meta
|
|
|
|
property="og:description"
|
2023-09-24 10:28:01 +02:00
|
|
|
content="Ensure your sensitive data remains encrypted, secure, and confidential."
|
2021-06-14 19:21:45 +02:00
|
|
|
/>
|
2024-03-11 13:43:20 +01:00
|
|
|
<meta property="og:image" content="/static/icons/icon-512x512.png" />
|
2021-06-14 19:21:45 +02:00
|
|
|
|
2021-06-13 18:11:25 +02:00
|
|
|
<!-- Twitter -->
|
2024-03-11 13:43:20 +01:00
|
|
|
<meta property="twitter:card" content="/static/summary_large_image" />
|
2021-06-14 19:21:45 +02:00
|
|
|
<meta property="twitter:url" content="https://www.hemmelig.app/" />
|
|
|
|
<meta
|
|
|
|
property="twitter:title"
|
2023-09-24 10:28:01 +02:00
|
|
|
content="Paste a password, confidential message, or private data."
|
2021-06-14 19:21:45 +02:00
|
|
|
/>
|
|
|
|
<meta
|
|
|
|
property="twitter:description"
|
2023-09-24 10:28:01 +02:00
|
|
|
content="Ensure your sensitive data remains encrypted, secure, and confidential."
|
2021-06-14 19:21:45 +02:00
|
|
|
/>
|
2024-03-11 13:43:20 +01:00
|
|
|
<meta property="twitter:image" content="/static/icons/icon-512x512.png" />
|
2021-06-13 18:11:25 +02:00
|
|
|
|
2021-06-21 22:17:09 +02:00
|
|
|
<meta name="theme-color" content="#231e23" />
|
|
|
|
|
2021-06-14 19:21:45 +02:00
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
2024-03-11 13:43:20 +01:00
|
|
|
<link rel="apple-touch-icon" href="/static/icons/maskable-icon-192x192.png" />
|
2023-11-15 07:36:47 +01:00
|
|
|
<script id="__secret_config">
|
2021-07-08 14:05:45 +02:00
|
|
|
try {
|
2023-04-02 20:23:20 +02:00
|
|
|
window.__SECRET_CONFIG = {{config}}
|
2021-07-08 14:05:45 +02:00
|
|
|
} catch (e) {
|
|
|
|
window.__SECRET_CONFIG = '';
|
|
|
|
}
|
2023-04-02 20:23:20 +02:00
|
|
|
|
2021-06-14 19:21:45 +02:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2021-07-08 14:05:45 +02:00
|
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
|
|
<div id="root"></div>
|
2023-04-02 17:18:19 +02:00
|
|
|
|
2024-03-11 13:43:20 +01:00
|
|
|
<script type="module" src="/index.jsx"></script>
|
2021-06-14 19:21:45 +02:00
|
|
|
</body>
|
2021-06-13 18:11:25 +02:00
|
|
|
</html>
|
2023-04-02 20:23:20 +02:00
|
|
|
`;
|