Floncer commited on
Commit
3df1978
·
verified ·
1 Parent(s): f6cd5c1

Привет дип сик!

Browse files
Files changed (2) hide show
  1. README.md +9 -5
  2. index.html +63 -19
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Deepseek Creative Coding Studio
3
- emoji: 🐢
4
- colorFrom: indigo
5
- colorTo: pink
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: DeepSeek Creative Coding Studio 🚀
3
+ colorFrom: red
4
+ colorTo: gray
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
14
+
index.html CHANGED
@@ -1,19 +1,63 @@
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>DeepSeek Creative Coding Studio 🚀</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
12
+ <style>
13
+ .hero-bg {
14
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
15
+ }
16
+ .game-canvas {
17
+ border: 3px solid #4a5568;
18
+ border-radius: 8px;
19
+ }
20
+ .deepseek-gradient {
21
+ background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
22
+ background-size: 400% 400%;
23
+ animation: gradientBG 15s ease infinite;
24
+ }
25
+ @keyframes gradientBG {
26
+ 0% { background-position: 0% 50%; }
27
+ 50% { background-position: 100% 50%; }
28
+ 100% { background-position: 0% 50%; }
29
+ }
30
+ </head>
31
+ <body class="bg-gray-100">
32
+ <header class="deepseek-gradient text-white py-6">
33
+ <div class="container mx-auto px-4">
34
+ <h1 class="text-4xl font-bold text-center">DeepSeek Creative Coding Studio 🚀</h1>
35
+ <p class="text-center mt-2">Привет, дип сик! Добро пожаловать в мир творческого кодинга!</p>
36
+ </div>
37
+ </header>
38
+
39
+ <main class="container mx-auto px-4 py-8">
40
+ <div class="grid md:grid-cols-2 gap-8">
41
+ <div class="bg-white rounded-lg shadow-lg p-6">
42
+ <h2 class="text-2xl font-semibold mb-4">О нас</h2>
43
+ <p class="text-gray-700">Мы создаем инновационные решения в мире веб-разработки и креативного программирования.</p>
44
+ </div>
45
+
46
+ <div class="bg-white rounded-lg shadow-lg p-6">
47
+ <h2 class="text-2xl font-semibold mb-4">Наши проекты</h2>
48
+ <p class="text-gray-700">Исследуйте наши последние творения в области интерактивного дизайна и разработки.</p>
49
+ </div>
50
+ </div>
51
+ </main>
52
+
53
+ <footer class="bg-gray-800 text-white py-6 mt-12">
54
+ <div class="container mx-auto px-4 text-center">
55
+ <p>© 2024 DeepSeek Creative Coding Studio 🚀</p>
56
+ </div>
57
+ </footer>
58
+
59
+ <script>
60
+ feather.replace();
61
+ </script>
62
+ </body>
63
+ </html>