Sc077y commited on
Commit
3bb53e5
·
verified ·
1 Parent(s): fb643e9

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +278 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Test
3
- emoji: 📊
4
- colorFrom: pink
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: test
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: purple
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,278 @@
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>Martin JULES - Graphics Programmer</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
+ .hero-gradient {
11
+ background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
12
+ }
13
+ .project-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
+ }
17
+ .glow-text {
18
+ text-shadow: 0 0 8px rgba(100, 149, 237, 0.6);
19
+ }
20
+ .typewriter {
21
+ overflow: hidden;
22
+ border-right: .15em solid #4299e1;
23
+ white-space: nowrap;
24
+ animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
25
+ }
26
+ @keyframes typing {
27
+ from { width: 0 }
28
+ to { width: 100% }
29
+ }
30
+ @keyframes blink-caret {
31
+ from, to { border-color: transparent }
32
+ 50% { border-color: #4299e1 }
33
+ }
34
+ </style>
35
+ </head>
36
+ <body class="bg-gray-900 text-gray-100 font-sans">
37
+ <!-- Hero Section -->
38
+ <section class="hero-gradient min-h-screen flex items-center justify-center px-4 py-20">
39
+ <div class="container mx-auto flex flex-col md:flex-row items-center">
40
+ <div class="md:w-1/2 mb-10 md:mb-0">
41
+ <h1 class="text-4xl md:text-6xl font-bold mb-4 glow-text">
42
+ <span class="text-blue-400">Hi, I'm</span> Martin
43
+ </h1>
44
+ <div class="typewriter text-2xl md:text-4xl font-mono mb-6">
45
+ A Graphics Programmer
46
+ </div>
47
+ <p class="text-xl md:text-2xl text-blue-300 mb-8">
48
+ & Gamedev Enthusiast
49
+ </p>
50
+ <div class="flex space-x-4">
51
+ <a href="#projects" class="px-6 py-3 bg-blue-600 hover:bg-blue-700 rounded-lg font-medium transition duration-300 flex items-center">
52
+ <i class="fas fa-project-diagram mr-2"></i> View Projects
53
+ </a>
54
+ <a href="#" class="px-6 py-3 border border-blue-400 hover:bg-blue-900/30 rounded-lg font-medium transition duration-300 flex items-center">
55
+ <i class="fas fa-paper-plane mr-2"></i> Contact Me
56
+ </a>
57
+ </div>
58
+ </div>
59
+ <div class="md:w-1/2 flex justify-center">
60
+ <img src="https://www.martinjules.com/static/media/developer.ef097afb.svg"
61
+ alt="Developer Illustration"
62
+ class="w-full max-w-md animate-float"
63
+ style="animation: float 6s ease-in-out infinite">
64
+ </div>
65
+ </div>
66
+ </section>
67
+
68
+ <!-- Projects Section -->
69
+ <section id="projects" class="py-20 px-4">
70
+ <div class="container mx-auto">
71
+ <h2 class="text-3xl md:text-4xl font-bold mb-2 text-center glow-text">
72
+ Projects Portfolio
73
+ </h2>
74
+ <p class="text-gray-400 text-center mb-12 max-w-2xl mx-auto">
75
+ Search projects by title or filter by category
76
+ </p>
77
+
78
+ <!-- Search and Filter -->
79
+ <div class="max-w-3xl mx-auto mb-12">
80
+ <div class="flex flex-col md:flex-row gap-4">
81
+ <div class="flex-1 relative">
82
+ <input type="text" placeholder="Search projects..."
83
+ class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
84
+ <i class="fas fa-search absolute right-4 top-3.5 text-gray-500"></i>
85
+ </div>
86
+ <select class="px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
87
+ <option value="">All Categories</option>
88
+ <option value="engine">Handmade 3D Engine</option>
89
+ <option value="game">Game Development</option>
90
+ <option value="graphics">Graphics Study</option>
91
+ <option value="tool">Development Tools</option>
92
+ </select>
93
+ </div>
94
+ </div>
95
+
96
+ <!-- Projects Grid -->
97
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
98
+ <!-- Project 1 -->
99
+ <a href="https://www.martinjules.com/projects/single-project?id=1"
100
+ class="project-card bg-gray-800 rounded-xl overflow-hidden transition duration-300 hover:border-blue-500 border border-gray-700">
101
+ <div class="h-48 bg-gradient-to-r from-blue-900 to-purple-900 flex items-center justify-center">
102
+ <i class="fas fa-gamepad text-6xl text-blue-400"></i>
103
+ </div>
104
+ <div class="p-6">
105
+ <h3 class="text-xl font-bold mb-2">Exploration Craft Game</h3>
106
+ <div class="flex items-center mb-4">
107
+ <span class="inline-block px-2 py-1 bg-blue-900/50 text-blue-300 text-xs rounded-full mr-2">
108
+ Handmade 3D Engine
109
+ </span>
110
+ <span class="inline-block px-2 py-1 bg-purple-900/50 text-purple-300 text-xs rounded-full">
111
+ Game Development
112
+ </span>
113
+ </div>
114
+ <p class="text-gray-400">An exploration game built with my custom 3D engine featuring procedural world generation.</p>
115
+ </div>
116
+ </a>
117
+
118
+ <!-- Project 2 -->
119
+ <a href="https://www.martinjules.com/projects/single-project?id=2"
120
+ class="project-card bg-gray-800 rounded-xl overflow-hidden transition duration-300 hover:border-blue-500 border border-gray-700">
121
+ <div class="h-48 bg-gradient-to-r from-indigo-900 to-blue-900 flex items-center justify-center">
122
+ <i class="fas fa-rocket text-6xl text-indigo-400"></i>
123
+ </div>
124
+ <div class="p-6">
125
+ <h3 class="text-xl font-bold mb-2">SpaceFlight Factory Game</h3>
126
+ <div class="flex items-center mb-4">
127
+ <span class="inline-block px-2 py-1 bg-blue-900/50 text-blue-300 text-xs rounded-full mr-2">
128
+ Handmade 3D Engine
129
+ </span>
130
+ <span class="inline-block px-2 py-1 bg-indigo-900/50 text-indigo-300 text-xs rounded-full">
131
+ Simulation
132
+ </span>
133
+ </div>
134
+ <p class="text-gray-400">Space flight simulation game with factory building elements using custom physics engine.</p>
135
+ </div>
136
+ </a>
137
+
138
+ <!-- Project 3 -->
139
+ <a href="https://www.martinjules.com/projects/single-project?id=3"
140
+ class="project-card bg-gray-800 rounded-xl overflow-hidden transition duration-300 hover:border-blue-500 border border-gray-700">
141
+ <div class="h-48 bg-gradient-to-r from-teal-900 to-emerald-900 flex items-center justify-center">
142
+ <i class="fas fa-ship text-6xl text-teal-400"></i>
143
+ </div>
144
+ <div class="p-6">
145
+ <h3 class="text-xl font-bold mb-2">Boat Craft: Multiplayer Game</h3>
146
+ <div class="flex items-center mb-4">
147
+ <span class="inline-block px-2 py-1 bg-emerald-900/50 text-emerald-300 text-xs rounded-full">
148
+ Multiplayer
149
+ </span>
150
+ </div>
151
+ <p class="text-gray-400">Online multiplayer boat building and sailing game with real-time water physics.</p>
152
+ </div>
153
+ </a>
154
+
155
+ <!-- Project 4 -->
156
+ <a href="https://www.martinjules.com/projects/single-project?id=4"
157
+ class="project-card bg-gray-800 rounded-xl overflow-hidden transition duration-300 hover:border-blue-500 border border-gray-700">
158
+ <div class="h-48 bg-gradient-to-r from-amber-900 to-yellow-900 flex items-center justify-center">
159
+ <i class="fas fa-pen-fancy text-6xl text-amber-400"></i>
160
+ </div>
161
+ <div class="p-6">
162
+ <h3 class="text-xl font-bold mb-2">Graphic Study</h3>
163
+ <div class="flex items-center mb-4">
164
+ <span class="inline-block px-2 py-1 bg-amber-900/50 text-amber-300 text-xs rounded-full">
165
+ Research
166
+ </span>
167
+ </div>
168
+ <p class="text-gray-400">In-depth studies of advanced graphics techniques and rendering pipelines.</p>
169
+ </div>
170
+ </a>
171
+
172
+ <!-- Project 5 -->
173
+ <a href="https://www.martinjules.com/projects/single-project?id=5"
174
+ class="project-card bg-gray-800 rounded-xl overflow-hidden transition duration-300 hover:border-blue-500 border border-gray-700">
175
+ <div class="h-48 bg-gradient-to-r from-red-900 to-pink-900 flex items-center justify-center">
176
+ <i class="fas fa-lightbulb text-6xl text-red-400"></i>
177
+ </div>
178
+ <div class="p-6">
179
+ <h3 class="text-xl font-bold mb-2">Raytracer + PovRay Parser Tool</h3>
180
+ <div class="flex items-center mb-4">
181
+ <span class="inline-block px-2 py-1 bg-pink-900/50 text-pink-300 text-xs rounded-full mr-2">
182
+ Ray Tracing
183
+ </span>
184
+ <span class="inline-block px-2 py-1 bg-red-900/50 text-red-300 text-xs rounded-full">
185
+ Development Tool
186
+ </span>
187
+ </div>
188
+ <p class="text-gray-400">Custom raytracer implementation with PovRay scene file parser and converter.</p>
189
+ </div>
190
+ </a>
191
+
192
+ <!-- Project 6 -->
193
+ <a href="https://www.martinjules.com/projects/single-project?id=6"
194
+ class="project-card bg-gray-800 rounded-xl overflow-hidden transition duration-300 hover:border-blue-500 border border-gray-700">
195
+ <div class="h-48 bg-gradient-to-r from-purple-900 to-pink-900 flex items-center justify-center">
196
+ <i class="fas fa-fort-awesome text-6xl text-purple-400"></i>
197
+ </div>
198
+ <div class="p-6">
199
+ <h3 class="text-xl font-bold mb-2">Tower Bruiser Game</h3>
200
+ <div class="flex items-center mb-4">
201
+ <span class="inline-block px-2 py-1 bg-blue-900/50 text-blue-300 text-xs rounded-full mr-2">
202
+ Handmade 3D Engine
203
+ </span>
204
+ <span class="inline-block px-2 py-1 bg-purple-900/50 text-purple-300 text-xs rounded-full">
205
+ Action Game
206
+ </span>
207
+ </div>
208
+ <p class="text-gray-400">Destruction-focused action game featuring physics-based tower demolition.</p>
209
+ </div>
210
+ </a>
211
+ </div>
212
+ </div>
213
+ </section>
214
+
215
+ <!-- Footer -->
216
+ <footer class="bg-gray-800 py-12 px-4">
217
+ <div class="container mx-auto">
218
+ <div class="flex flex-col md:flex-row justify-between items-center">
219
+ <div class="mb-6 md:mb-0">
220
+ <h3 class="text-2xl font-bold mb-2">Martin JULES</h3>
221
+ <p class="text-gray-400">Graphics Programmer & Gamedev Enthusiast</p>
222
+ </div>
223
+ <div class="flex space-x-6">
224
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition duration-300 text-xl">
225
+ <i class="fab fa-github"></i>
226
+ </a>
227
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition duration-300 text-xl">
228
+ <i class="fab fa-linkedin"></i>
229
+ </a>
230
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition duration-300 text-xl">
231
+ <i class="fab fa-twitter"></i>
232
+ </a>
233
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition duration-300 text-xl">
234
+ <i class="fas fa-envelope"></i>
235
+ </a>
236
+ </div>
237
+ </div>
238
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-500">
239
+ <p>&copy; 2023 Martin JULES. All rights reserved.</p>
240
+ </div>
241
+ </div>
242
+ </footer>
243
+
244
+ <script>
245
+ // Simple animation for project cards
246
+ document.querySelectorAll('.project-card').forEach(card => {
247
+ card.addEventListener('mouseenter', function() {
248
+ this.style.transition = 'transform 0.3s ease, box-shadow 0.3s ease';
249
+ });
250
+
251
+ card.addEventListener('mouseleave', function() {
252
+ this.style.transition = 'transform 0.3s ease, box-shadow 0.3s ease';
253
+ });
254
+ });
255
+
256
+ // Typewriter effect for the hero section
257
+ const typewriterTexts = [
258
+ "A Graphics Programmer",
259
+ "A Game Developer",
260
+ "A 3D Engine Creator",
261
+ "A Rendering Specialist"
262
+ ];
263
+
264
+ let currentIndex = 0;
265
+ const typewriterElement = document.querySelector('.typewriter');
266
+
267
+ function changeTypewriterText() {
268
+ currentIndex = (currentIndex + 1) % typewriterTexts.length;
269
+ typewriterElement.textContent = typewriterTexts[currentIndex];
270
+ typewriterElement.style.animation = 'none';
271
+ void typewriterElement.offsetWidth; // Trigger reflow
272
+ typewriterElement.style.animation = 'typing 3.5s steps(40, end), blink-caret .75s step-end infinite';
273
+ }
274
+
275
+ setInterval(changeTypewriterText, 4000);
276
+ </script>
277
+ <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=Sc077y/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
278
+ </html>