Create index.html
Browse files- index.html +23 -0
index.html
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Pages Converter Pro</title>
|
7 |
+
<link rel="manifest" href="/manifest.json">
|
8 |
+
<meta name="theme-color" content="#2a5298">
|
9 |
+
<meta name="apple-mobile-web-app-capable" content="yes">
|
10 |
+
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
11 |
+
<meta name="apple-mobile-web-app-title" content="Pages Converter">
|
12 |
+
<script>
|
13 |
+
if ('serviceWorker' in navigator) {
|
14 |
+
navigator.serviceWorker.register('/sw.js');
|
15 |
+
}
|
16 |
+
</script>
|
17 |
+
</head>
|
18 |
+
<body>
|
19 |
+
<div id="root"></div>
|
20 |
+
<script type="module" src="/gradio.js"></script>
|
21 |
+
<iframe src="/" style="width: 100%; height: 100vh; border: none;"></iframe>
|
22 |
+
</body>
|
23 |
+
</html>
|