-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (70 loc) · 3.01 KB
/
index.html
File metadata and controls
71 lines (70 loc) · 3.01 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
<!--
@project: CAC - https://github.com/cacybernetic/cacybernetic.github.io
@author: Obrymec - https://obrymec.vercel.app
@fileoverview: The main html structure.
@supported: DESKTOP, MOBILE
@created: 2025-07-21
@updated: 2025-09-05
@file: index.html
@version: 0.0.3
-->
<!--HTML structure-->
<!doctype html>
<!--Global structure-->
<html lang = "en">
<!--Head-->
<head>
<!--Global title-->
<title>Console Art Cybernetic</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 content = "https://cacybernetic.github.io" name = "twitter:card"/>
<meta content = "https://cacybernetic.github.io" property = "og:url"/>
<meta property = "og:site_name" content = "Console Art Cybernetic"/>
<meta content = "Console Art Cybernetic" name = "tweetmeme-title"/>
<meta content = "Console Art Cybernetic" name = "twitter:title"/>
<meta content = "Console Art Cybernetic" property = "og:title"/>
<meta name = "twitter:image:alt" content = "CA Cybernetic"/>
<meta http-equiv = "X-UA-Compatible" content = "id=edge"/>
<meta property = "og:type" content = "article"/>
<meta property = "og:local" content = "en_US"/>
<meta
content = "Console Art Cybernetic is an organization founded in 2022 to help any potential client, enterprise, or startup in the world to reach theirs goals on technology plan like Web Development, Desktop Development, Mobile Development, AI Development and Game Development."
name = "twitter:description"
/>
<meta
content = "Console Art Cybernetic is an organization founded in 2022 to help any potential client, enterprise, or startup in the world to reach theirs goals on technology plan like Web Development, Desktop Development, Mobile Development, AI Development and Game Development."
property = "og:description"
/>
<meta
content = "Console Art Cybernetic is an organization founded in 2022 to help any potential client, enterprise, or startup in the world to reach theirs goals on technology plan like Web Development, Desktop Development, Mobile Development, AI Development and Game Development."
name = "description"
/>
<meta
content = "https://cacybernetic.github.io/assets/render/render_1.webp"
name = "twitter:image"
/>
<meta
content = "https://cacybernetic.github.io/assets/render/render_1.webp"
property = "og:image"
/>
<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>