Spaces:
Running
Running
Upload 2 files
Browse files- .gitattributes +1 -0
- assets/index.html +127 -0
- assets/zotheos_intro1.mp4 +3 -0
.gitattributes
CHANGED
@@ -35,3 +35,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
assets/favicon_blackBW.ico filter=lfs diff=lfs merge=lfs -text
|
37 |
assets/zotheos_logo_bw.png filter=lfs diff=lfs merge=lfs -text
|
|
|
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
assets/favicon_blackBW.ico filter=lfs diff=lfs merge=lfs -text
|
37 |
assets/zotheos_logo_bw.png filter=lfs diff=lfs merge=lfs -text
|
38 |
+
assets/zotheos_intro1.mp4 filter=lfs diff=lfs merge=lfs -text
|
assets/index.html
ADDED
@@ -0,0 +1,127 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
6 |
+
<title>ZOTHEOS | Ethical Fusion AI</title>
|
7 |
+
<link rel="icon" type="image/png" href="favicon_blackBG.png" />
|
8 |
+
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet" />
|
9 |
+
<style>
|
10 |
+
* {
|
11 |
+
margin: 0;
|
12 |
+
padding: 0;
|
13 |
+
box-sizing: border-box;
|
14 |
+
}
|
15 |
+
|
16 |
+
html, body {
|
17 |
+
width: 100%;
|
18 |
+
height: 100%;
|
19 |
+
font-family: 'Lato', sans-serif;
|
20 |
+
background: radial-gradient(ellipse at bottom, #0a0a15 0%, #050510 70%, #000000 100%);
|
21 |
+
color: #f0f0f5;
|
22 |
+
overflow: hidden;
|
23 |
+
}
|
24 |
+
|
25 |
+
#intro-video-container {
|
26 |
+
position: fixed;
|
27 |
+
top: 0;
|
28 |
+
left: 0;
|
29 |
+
width: 100vw;
|
30 |
+
height: 100vh;
|
31 |
+
background: #000;
|
32 |
+
display: flex;
|
33 |
+
justify-content: center;
|
34 |
+
align-items: center;
|
35 |
+
z-index: 9999;
|
36 |
+
}
|
37 |
+
|
38 |
+
#intro-video {
|
39 |
+
width: 100%;
|
40 |
+
height: 100%;
|
41 |
+
object-fit: cover;
|
42 |
+
}
|
43 |
+
|
44 |
+
#skip-text {
|
45 |
+
position: absolute;
|
46 |
+
bottom: 30px;
|
47 |
+
color: #aaa;
|
48 |
+
font-size: 0.85rem;
|
49 |
+
font-style: italic;
|
50 |
+
animation: fadeIn 3s ease-in-out forwards;
|
51 |
+
}
|
52 |
+
|
53 |
+
#main-content {
|
54 |
+
display: none;
|
55 |
+
flex-direction: column;
|
56 |
+
align-items: center;
|
57 |
+
justify-content: center;
|
58 |
+
width: 100%;
|
59 |
+
height: 100vh;
|
60 |
+
}
|
61 |
+
|
62 |
+
#main-content.show {
|
63 |
+
display: flex;
|
64 |
+
animation: fadeInSlow 1.2s ease forwards;
|
65 |
+
}
|
66 |
+
|
67 |
+
#gradio-app {
|
68 |
+
width: 100%;
|
69 |
+
height: 100vh;
|
70 |
+
border: none;
|
71 |
+
opacity: 0;
|
72 |
+
transition: opacity 1.5s ease;
|
73 |
+
}
|
74 |
+
|
75 |
+
#main-content.show #gradio-app {
|
76 |
+
opacity: 1;
|
77 |
+
}
|
78 |
+
|
79 |
+
@keyframes fadeIn {
|
80 |
+
to { opacity: 1; }
|
81 |
+
}
|
82 |
+
|
83 |
+
@keyframes fadeInSlow {
|
84 |
+
from { opacity: 0; }
|
85 |
+
to { opacity: 1; }
|
86 |
+
}
|
87 |
+
|
88 |
+
@media (max-width: 768px) {
|
89 |
+
#skip-text {
|
90 |
+
font-size: 0.75rem;
|
91 |
+
bottom: 20px;
|
92 |
+
}
|
93 |
+
}
|
94 |
+
</style>
|
95 |
+
</head>
|
96 |
+
<body>
|
97 |
+
|
98 |
+
<!-- ✅ Fullscreen Intro Video -->
|
99 |
+
<div id="intro-video-container">
|
100 |
+
<video id="intro-video" autoplay muted playsinline>
|
101 |
+
<source src="zotheos_intro.mp4" type="video/mp4" />
|
102 |
+
Your browser does not support the video tag.
|
103 |
+
</video>
|
104 |
+
<div id="skip-text">Click or tap to skip</div>
|
105 |
+
</div>
|
106 |
+
|
107 |
+
<!-- ✅ Main App Embedded -->
|
108 |
+
<div id="main-content">
|
109 |
+
<iframe id="gradio-app" src="https://huggingface.co/spaces/ZOTHEOS/ZOTHEOS-App"></iframe>
|
110 |
+
</div>
|
111 |
+
|
112 |
+
<script>
|
113 |
+
const video = document.getElementById('intro-video');
|
114 |
+
const introContainer = document.getElementById('intro-video-container');
|
115 |
+
const mainContent = document.getElementById('main-content');
|
116 |
+
|
117 |
+
function launchZotheosApp() {
|
118 |
+
introContainer.style.display = 'none';
|
119 |
+
mainContent.classList.add('show');
|
120 |
+
}
|
121 |
+
|
122 |
+
video.addEventListener('ended', launchZotheosApp);
|
123 |
+
introContainer.addEventListener('click', launchZotheosApp); // Click-to-skip
|
124 |
+
</script>
|
125 |
+
|
126 |
+
</body>
|
127 |
+
</html>
|
assets/zotheos_intro1.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1578fab6bc7c17b1706f9536c010a0db7358c6ac6b73da502527b766a734d4b9
|
3 |
+
size 18631416
|