Привет дип сик!
Browse files- README.md +9 -5
- index.html +63 -19
README.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
| 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 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>
|