-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (128 loc) · 4.19 KB
/
index.html
File metadata and controls
135 lines (128 loc) · 4.19 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<!-- Primary Meta Tags -->
<title>AIOX - AI Agent Platform</title>
<meta name="title" content="AIOX - AI Agent Platform" />
<meta name="description" content="Interface para orquestração de agentes de IA - Comunicação centralizada com squads de copywriting, design, creator e orchestrator" />
<!-- PWA Meta Tags -->
<meta name="theme-color" content="#0F0F11" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="AIOX" />
<!-- Icons -->
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="mask-icon" href="/icon.svg" color="#D1FF00" />
<!-- Open Graph / Social -->
<meta property="og:type" content="website" />
<meta property="og:title" content="AIOX - AI Agent Platform" />
<meta property="og:description" content="Interface para orquestração de agentes de IA" />
<meta property="og:image" content="/pwa-512x512.png" />
<meta name="twitter:card" content="summary_large_image" />
<style>
/* Prevent FOUC */
html {
background: #f5f5f7;
}
html.dark {
background: #050505;
}
/* PWA Splash Screen */
#pwa-splash {
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: #050505;
z-index: 9999;
transition: opacity 0.4s cubic-bezier(0, 0, 0.2, 1);
}
#pwa-splash.hide {
opacity: 0;
pointer-events: none;
}
#pwa-splash .splash-mark {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
#pwa-splash svg {
width: 80px;
height: 80px;
animation: aioxBrandReveal 1.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
#pwa-splash .splash-glow {
position: absolute;
inset: -20px;
border-radius: 50%;
background: radial-gradient(circle, rgba(209, 255, 0, 0.15) 0%, transparent 70%);
animation: aioxGlowPulse 2.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0.6s infinite;
opacity: 0;
}
@keyframes aioxBrandReveal {
0% {
opacity: 0;
transform: scale(0.8);
filter: brightness(0.5);
}
40% {
opacity: 1;
transform: scale(1.02);
filter: brightness(1.2);
}
60% {
transform: scale(0.98);
filter: brightness(1);
}
100% {
opacity: 1;
transform: scale(1);
filter: brightness(1);
}
}
@keyframes aioxGlowPulse {
0%, 100% {
opacity: 0;
transform: scale(0.9);
}
50% {
opacity: 1;
transform: scale(1.1);
}
}
</style>
</head>
<body>
<!-- PWA Splash Screen -->
<div id="pwa-splash">
<div class="splash-mark">
<div class="splash-glow"></div>
<svg viewBox="0 0 377 320" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill="white" d="M0 310.6H376.464L188.219 9.4L0 310.6ZM96.047 257.35L188.219 109.875L280.392 257.35H96.047Z"/>
</svg>
</div>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
// Hide splash screen when app loads
window.addEventListener('load', () => {
setTimeout(() => {
const splash = document.getElementById('pwa-splash');
if (splash) {
splash.classList.add('hide');
setTimeout(() => splash.remove(), 300);
}
}, 500);
});
</script>
</body>
</html>