File size: 957 Bytes
ea6c2a8
 
 
 
 
 
 
 
 
 
 
473c526
ea6c2a8
 
a582fa0
ea6c2a8
22916b8
 
 
 
 
 
 
0c3d1d5
22916b8
 
0c3d1d5
22916b8
 
 
ea6c2a8
 
 
9dd0ee7
 
29a9c02
9dd0ee7
0c3d1d5
ea6c2a8
 
 
 
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
export const defaultHTML = `<!DOCTYPE html>
<html>
  <head>
    <title>My app</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta charset="utf-8">
    <style>
      body {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        height: 100dvh;
        font-family: "Arial", sans-serif;
        text-align: center;
      }
      .arrow {
        position: absolute;
        bottom: 32px;
        left: 0px;
        width: 100px;
        transform: rotate(30deg);
      }
      h2 {
        font-size: 50px;
      }
      h2 span {
        color: #acacac;
        font-size: 32px;
      }
    </style>
  </head>
  <body>
    <h2>
      <span>Я готов к работе</span><br />
      Что нужно сделать?
    </h2>
    <img src="https://greff3-deepsite.hf.space/arrow.svg" class="arrow" />
    <script></script>
  </body>
</html>
`;