PyxiLabs commited on
Commit
7e30643
·
verified ·
1 Parent(s): 01b29df

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +214 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: My
3
- emoji: 👀
4
- colorFrom: blue
5
- colorTo: green
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: my
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: red
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,214 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Devilish Chronicles</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Syne+Mono&display=swap');
11
+
12
+ .devil-text {
13
+ font-family: 'Major Mono Display', monospace;
14
+ text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
15
+ }
16
+
17
+ .typing-effect {
18
+ overflow: hidden;
19
+ white-space: nowrap;
20
+ border-right: 0.15em solid #ff0000;
21
+ animation: typing 2.5s steps(40, end), blink-caret 0.75s step-end infinite;
22
+ }
23
+
24
+ @keyframes typing {
25
+ from { width: 0 }
26
+ to { width: 100% }
27
+ }
28
+
29
+ @keyframes blink-caret {
30
+ from, to { border-color: transparent }
31
+ 50% { border-color: #ff0000 }
32
+ }
33
+
34
+ .glow {
35
+ animation: glow 2s ease-in-out infinite alternate;
36
+ }
37
+
38
+ @keyframes glow {
39
+ from {
40
+ text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff0000, 0 0 20px #ff0000;
41
+ }
42
+ to {
43
+ text-shadow: 0 0 10px #fff, 0 0 20px #ff0000, 0 0 30px #ff0000, 0 0 40px #ff0000;
44
+ }
45
+ }
46
+
47
+ .devil-bg {
48
+ background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
49
+ }
50
+
51
+ .card-hover:hover {
52
+ transform: translateY(-5px);
53
+ box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
54
+ }
55
+
56
+ .social-icon {
57
+ transition: all 0.3s ease;
58
+ }
59
+
60
+ .social-icon:hover {
61
+ transform: scale(1.2) rotate(10deg);
62
+ color: #ff0000 !important;
63
+ }
64
+ </style>
65
+ </head>
66
+ <body class="devil-bg min-h-screen text-gray-200">
67
+ <div class="container mx-auto px-4 py-12">
68
+ <!-- Header with animated title -->
69
+ <header class="text-center mb-12">
70
+ <h1 class="devil-text text-4xl md:text-6xl font-bold mb-4 glow">
71
+ Dᴇᴠɪʟɪѕʜ cʜʀᴏɴɪᴄʟᴇѕ
72
+ </h1>
73
+ <div class="w-full max-w-md mx-auto h-px bg-gradient-to-r from-transparent via-red-500 to-transparent"></div>
74
+ </header>
75
+
76
+ <!-- Main content grid -->
77
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
78
+ <!-- Left section - Devil avatar -->
79
+ <div class="flex flex-col items-center justify-center">
80
+ <div class="relative mb-6 group">
81
+ <div class="absolute -inset-1 bg-gradient-to-r from-red-600 to-purple-900 rounded-lg blur opacity-75 group-hover:opacity-100 transition duration-200"></div>
82
+ <div class="relative bg-black rounded-lg p-1">
83
+ <img src="https://avatars.githubusercontent.com/u/43078934?v=4" alt="Devil Avatar"
84
+ class="w-48 h-48 rounded-lg border-2 border-red-900 object-cover filter grayscale hover:grayscale-0 transition duration-500">
85
+ </div>
86
+ </div>
87
+ <h3 class="font-medium mb-2 text-red-400 typing-effect" id="devilTitle"></h3>
88
+ <p class="text-sm text-gray-400 italic">i._.become_a_devil</p>
89
+
90
+ <button id="darkModeToggle" class="mt-6 px-4 py-2 bg-red-900 hover:bg-red-800 rounded-lg transition-colors duration-300 flex items-center">
91
+ <i class="fas fa-moon mr-2"></i> Dark Ritual
92
+ </button>
93
+ </div>
94
+
95
+ <!-- Center section - About -->
96
+ <div class="col-span-1 md:col-span-2">
97
+ <div class="bg-gradient-to-br from-gray-900 to-black rounded-xl p-6 shadow-lg border border-gray-800 card-hover transition-all duration-300">
98
+ <h2 class="devil-text text-2xl font-bold mb-6 text-center border-b border-red-900 pb-2">
99
+ ₊‧.°.⋆ 「 ✦ Devil ✦ 」
100
+ </h2>
101
+
102
+ <div class="space-y-6">
103
+ <div class="bg-gray-900 rounded-lg p-4 border-l-4 border-red-700">
104
+ <h3 class="text-red-400 font-bold mb-2">₊‧.° am i alive??✦</h3>
105
+ <p class="text-gray-300">"Code is my canvas, darkness my inspiration. Walking the line between reality and digital chaos. Creating what shouldn't exist, breaking what does."</p>
106
+ </div>
107
+
108
+ <div class="bg-gray-900 rounded-lg p-4 border-l-4 border-purple-700">
109
+ <h3 class="text-purple-400 font-bold mb-2">⊹₊ ㆍ✿ ㆍ₊⊹</h3>
110
+ <p class="text-gray-300">
111
+ Specializing in JavaScript frameworks with a focus on creating unconventional applications that challenge the norm. When the world sleeps, my code comes alive.
112
+ </p>
113
+ </div>
114
+ </div>
115
+ </div>
116
+
117
+ <!-- Social links -->
118
+ <div class="mt-8 flex justify-center space-x-6">
119
+ <a href="https://github.com/Darknessking13" target="_blank" class="social-icon text-2xl hover:text-red-500">
120
+ <i class="fab fa-github"></i>
121
+ </a>
122
+ <a href="https://discord.com/users/1083342294951927881" target="_blank" class="social-icon text-2xl hover:text-indigo-500">
123
+ <i class="fab fa-discord"></i>
124
+ </a>
125
+ <a href="https://x.com/Darknessking132" target="_blank" class="social-icon text-2xl hover:text-blue-400">
126
+ <i class="fab fa-twitter"></i>
127
+ </a>
128
+ </div>
129
+
130
+ <!-- Digital clock -->
131
+ <div class="mt-8 text-center">
132
+ <div class="inline-block bg-black bg-opacity-50 rounded-lg px-6 py-2 border border-gray-800">
133
+ <div id="clock" class="text-xl font-mono text-red-400"></div>
134
+ <div id="date" class="text-sm text-gray-400"></div>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ </div>
139
+
140
+ <!-- Footer -->
141
+ <footer class="mt-16 text-center text-gray-500 text-sm">
142
+ <div class="w-full max-w-md mx-auto h-px bg-gradient-to-r from-transparent via-red-900 to-transparent mb-4"></div>
143
+ <p>The darkness takes many forms... choose yours wisely.</p>
144
+ <p class="mt-2">© <span id="year"></span> Devilish Chronicles</p>
145
+ </footer>
146
+ </div>
147
+
148
+ <script>
149
+ // Typing animation for the title
150
+ const text = "₊‧.°.⋆ 「 ✦ Devil ✦ 」";
151
+ let i = 0;
152
+ const typingEffect = () => {
153
+ if (i < text.length) {
154
+ document.getElementById("devilTitle").innerHTML += text.charAt(i);
155
+ i++;
156
+ setTimeout(typingEffect, 100);
157
+ }
158
+ };
159
+
160
+ // Start typing effect after page loads
161
+ document.addEventListener('DOMContentLoaded', () => {
162
+ typingEffect();
163
+
164
+ // Set current year in footer
165
+ document.getElementById('year').textContent = new Date().getFullYear();
166
+
167
+ // Dark mode toggle
168
+ const darkModeToggle = document.getElementById('darkModeToggle');
169
+ let isDark = true;
170
+
171
+ darkModeToggle.addEventListener('click', () => {
172
+ isDark = !isDark;
173
+ if (!isDark) {
174
+ document.body.classList.remove('devil-bg');
175
+ document.body.classList.add('bg-gray-100', 'text-gray-900');
176
+ darkModeToggle.innerHTML = '<i class="fas fa-sun mr-2"></i> Light Mode';
177
+ darkModeToggle.classList.remove('bg-red-900', 'hover:bg-red-800');
178
+ darkModeToggle.classList.add('bg-yellow-500', 'hover:bg-yellow-400');
179
+ } else {
180
+ document.body.classList.add('devil-bg');
181
+ document.body.classList.remove('bg-gray-100', 'text-gray-900');
182
+ darkModeToggle.innerHTML = '<i class="fas fa-moon mr-2"></i> Dark Ritual';
183
+ darkModeToggle.classList.add('bg-red-900', 'hover:bg-red-800');
184
+ darkModeToggle.classList.remove('bg-yellow-500', 'hover:bg-yellow-400');
185
+ }
186
+ });
187
+
188
+ // Update clock every second
189
+ function updateClock() {
190
+ const now = new Date();
191
+ const timeStr = now.toLocaleTimeString('en-US', { hour: '2-digit', minute: '2-digit', second: '2-digit' });
192
+ const dateStr = now.toLocaleDateString('en-US', { weekday: 'long', year: 'numeric', month: 'short', day: 'numeric' });
193
+
194
+ document.getElementById('clock').textContent = timeStr;
195
+ document.getElementById('date').textContent = dateStr;
196
+ }
197
+
198
+ updateClock();
199
+ setInterval(updateClock, 1000);
200
+
201
+ // Add random glow effect to social icons
202
+ const socialIcons = document.querySelectorAll('.social-icon');
203
+ setInterval(() => {
204
+ socialIcons.forEach(icon => {
205
+ if (Math.random() > 0.7) {
206
+ icon.classList.add('glow');
207
+ setTimeout(() => icon.classList.remove('glow'), 2000);
208
+ }
209
+ });
210
+ }, 3000);
211
+ });
212
+ </script>
213
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=PyxiLabs/my" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
214
+ </html>