-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (77 loc) · 2.52 KB
/
index.html
File metadata and controls
78 lines (77 loc) · 2.52 KB
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
<!--
@organization Console Art Cybernetic - https://cacybernetic.github.io
@author: Obrymec - https://obrymec.vercel.app
@fileoverview: The main html structure.
@stack Vite + React + Typescript
@supported: DESKTOP, MOBILE
@created: 2025-11-13
@updated: 2025-11-24
@file: index.html
@version: 0.0.2
-->
<!--HTML structure-->
<!doctype html>
<!--Global structure-->
<html lang = "en">
<!--Head-->
<head>
<!--Global title-->
<title>Socket Monitoring</title>
<!--App favicon-->
<link rel = "shortcut icon" ref = "/favicon.png" type = "image/png"/>
<link href = "/favicon.png" type = "image/png" rel = "icon"/>
<!--PWA-->
<link href = "/assets/logos/logo-96.webp" rel = "apple-touch-icon"/>
<meta name = "apple-mobile-web-status-bar" content = "black"/>
<meta name = "theme-color" content = "black"/>
<!--Meta configs-->
<meta property = "og:site_name" content = "Socket Monitoring"/>
<meta content = "Socket Monitoring" name = "tweetmeme-title"/>
<meta name = "twitter:image:alt" content = "Socket monitor."/>
<meta content = "Socket Monitoring" name = "twitter:title"/>
<meta content = "Socket Monitoring" property = "og:title"/>
<meta http-equiv = "X-UA-Compatible" content = "id=edge"/>
<meta property = "og:type" content = "article"/>
<meta property = "og:local" content = "en_US"/>
<meta
content = "https://cacybernetic.github.io/socket_monitoring/assets/render/render_4.webp"
name = "twitter:image"
/>
<meta
content = "https://cacybernetic.github.io/socket_monitoring/assets/render/render_4.webp"
property = "og:image"
/>
<meta
content = "Monitors and visualizes live socket connections and data flow."
name = "twitter:description"
/>
<meta
content = "Monitors and visualizes live socket connections and data flow."
property = "og:description"
/>
<meta
content = "Monitors and visualizes live socket connections and data flow."
name = "description"
/>
<meta
content = "https://cacybernetic.github.io/socket_monitoring/"
name = "twitter:card"
/>
<meta
content = "https://cacybernetic.github.io/socket_monitoring/"
property = "og:url"
/>
<meta
content = "width=device-width, initial-scale=1.0"
charset = "utf-8"
name = "viewport"
/>
</head>
<!--Global root-->
<body>
<!--Graphical interface-->
<div id = "root"></div>
<!--Controller-->
<script src = "/src/main.tsx" type = "module"></script>
</body>
</html>