mehranbehnam commited on
Commit
dc4b942
·
verified ·
1 Parent(s): 8ed71dc

چه کدهایی میتونی درست کنی تخصصت چیه

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +274 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Codecraft Wizardry
3
- emoji: 🐢
4
- colorFrom: pink
5
- colorTo: purple
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: CodeCraft Wizardry
3
+ colorFrom: yellow
4
+ colorTo: blue
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).
index.html CHANGED
@@ -1,19 +1,275 @@
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" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>CodeCraft Wizardry</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script>
9
+ tailwind.config = {
10
+ darkMode: 'class',
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#3B82F6',
15
+ secondary: '#10B981'
16
+ }
17
+ }
18
+ }
19
+ }
20
+ </script>
21
+ <script src="https://unpkg.com/feather-icons"></script>
22
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
23
+ <style>
24
+ .hero-gradient {
25
+ background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
26
+ }
27
+ .skill-card:hover {
28
+ transform: translateY(-5px);
29
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
30
+ }
31
+ </style>
32
+ </head>
33
+ <body class="bg-gray-50 dark:bg-gray-900 transition-colors duration-300">
34
+ <!-- Navigation -->
35
+ <nav class="bg-white dark:bg-gray-800 shadow-sm sticky top-0 z-50">
36
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
37
+ <div class="flex justify-between h-16">
38
+ <div class="flex items-center">
39
+ <i data-feather="code" class="text-primary-500 dark:text-primary-400"></i>
40
+ <span class="ml-2 text-xl font-bold text-gray-900 dark:text-white">CodeCraft</span>
41
+ </div>
42
+ <div class="hidden md:flex items-center space-x-8">
43
+ <a href="#" class="text-primary-500 dark:text-primary-400 font-medium">Home</a>
44
+ <a href="#" class="text-gray-600 dark:text-gray-300 hover:text-primary-500 dark:hover:text-primary-400">Services</a>
45
+ <a href="#" class="text-gray-600 dark:text-gray-300 hover:text-primary-500 dark:hover:text-primary-400">Portfolio</a>
46
+ <a href="#" class="text-gray-600 dark:text-gray-300 hover:text-primary-500 dark:hover:text-primary-400">Contact</a>
47
+ <button class="bg-primary-500 hover:bg-primary-600 text-white px-4 py-2 rounded-lg transition">
48
+ Get Started
49
+ </button>
50
+ </div>
51
+ <button class="md:hidden text-gray-500 dark:text-gray-300">
52
+ <i data-feather="menu"></i>
53
+ </button>
54
+ </div>
55
+ </div>
56
+ </nav>
57
+
58
+ <!-- Hero Section -->
59
+ <section class="hero-gradient py-20">
60
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
61
+ <div class="flex flex-col md:flex-row items-center">
62
+ <div class="md:w-1/2 mb-10 md:mb-0">
63
+ <h1 class="text-4xl md:text-5xl font-bold text-gray-900 dark:text-white mb-4">
64
+ Digital Wizardry <span class="text-primary-500">Crafted</span> to Perfection
65
+ </h1>
66
+ <p class="text-lg text-gray-600 dark:text-gray-300 mb-8">
67
+ I specialize in creating magical digital experiences with cutting-edge web technologies. From responsive UIs to interactive animations, I bring ideas to life.
68
+ </p>
69
+ <div class="flex space-x-4">
70
+ <button class="bg-primary-500 hover:bg-primary-600 text-white px-6 py-3 rounded-lg font-medium transition">
71
+ Explore My Work
72
+ </button>
73
+ <button class="border border-gray-300 dark:border-gray-600 text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 px-6 py-3 rounded-lg font-medium transition">
74
+ <i data-feather="github" class="inline mr-2"></i> GitHub
75
+ </button>
76
+ </div>
77
+ </div>
78
+ <div class="md:w-1/2">
79
+ <div class="relative">
80
+ <div class="absolute -top-6 -left-6 w-64 h-64 bg-secondary-500 rounded-full mix-blend-multiply filter blur-xl opacity-20 animate-blob"></div>
81
+ <div class="absolute -bottom-8 -right-8 w-64 h-64 bg-primary-500 rounded-full mix-blend-multiply filter blur-xl opacity-20 animate-blob animation-delay-2000"></div>
82
+ <div class="relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl p-6">
83
+ <div class="flex items-center mb-4">
84
+ <div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
85
+ <div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
86
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
87
+ </div>
88
+ <pre class="text-sm text-gray-800 dark:text-gray-200 overflow-x-auto">
89
+ <span class="text-purple-500">const</span> <span class="text-blue-500">skills</span> = {
90
+ <span class="text-green-500">frontend</span>: [<span class="text-yellow-500">'React'</span>, <span class="text-yellow-500">'Vue'</span>, <span class="text-yellow-500">'TailwindCSS'</span>],
91
+ <span class="text-green-500">backend</span>: [<span class="text-yellow-500">'Node.js'</span>, <span class="text-yellow-500">'Express'</span>, <span class="text-yellow-500">'MongoDB'</span>],
92
+ <span class="text-green-500">design</span>: [<span class="text-yellow-500">'Figma'</span>, <span class="text-yellow-500">'Adobe XD'</span>, <span class="text-yellow-500">'UI/UX'</span>],
93
+ <span class="text-green-500">animation</span>: [<span class="text-yellow-500">'GSAP'</span>, <span class="text-yellow-500">'Three.js'</span>, <span class="text-yellow-500">'Vanta.js'</span>]
94
+ };</pre>
95
+ </div>
96
+ </div>
97
+ </div>
98
+ </div>
99
+ </div>
100
+ </section>
101
+
102
+ <!-- Skills Section -->
103
+ <section class="py-20 bg-gray-100 dark:bg-gray-800">
104
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
105
+ <div class="text-center mb-16">
106
+ <h2 class="text-3xl font-bold text-gray-900 dark:text-white mb-4">My Magical Toolbox</h2>
107
+ <p class="text-lg text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">
108
+ I wield these powerful technologies to create digital spells that enchant users and solve complex problems.
109
+ </p>
110
+ </div>
111
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
112
+ <!-- Skill Card 1 -->
113
+ <div class="skill-card bg-white dark:bg-gray-700 rounded-xl shadow-md p-6 transition duration-300">
114
+ <div class="w-12 h-12 bg-primary-100 dark:bg-primary-900 rounded-lg flex items-center justify-center mb-4">
115
+ <i data-feather="layout" class="text-primary-500 dark:text-primary-400 w-6 h-6"></i>
116
+ </div>
117
+ <h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">UI/UX Design</h3>
118
+ <p class="text-gray-600 dark:text-gray-300">
119
+ Crafting intuitive and beautiful interfaces that users love. Focused on accessibility and seamless user journeys.
120
+ </p>
121
+ </div>
122
+
123
+ <!-- Skill Card 2 -->
124
+ <div class="skill-card bg-white dark:bg-gray-700 rounded-xl shadow-md p-6 transition duration-300">
125
+ <div class="w-12 h-12 bg-secondary-100 dark:bg-secondary-900 rounded-lg flex items-center justify-center mb-4">
126
+ <i data-feather="code" class="text-secondary-500 dark:text-secondary-400 w-6 h-6"></i>
127
+ </div>
128
+ <h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">Frontend Development</h3>
129
+ <p class="text-gray-600 dark:text-gray-300">
130
+ Building responsive, performant web applications with React, Vue, and modern CSS frameworks like Tailwind.
131
+ </p>
132
+ </div>
133
+
134
+ <!-- Skill Card 3 -->
135
+ <div class="skill-card bg-white dark:bg-gray-700 rounded-xl shadow-md p-6 transition duration-300">
136
+ <div class="w-12 h-12 bg-purple-100 dark:bg-purple-900 rounded-lg flex items-center justify-center mb-4">
137
+ <i data-feather="server" class="text-purple-500 dark:text-purple-400 w-6 h-6"></i>
138
+ </div>
139
+ <h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">Backend Development</h3>
140
+ <p class="text-gray-600 dark:text-gray-300">
141
+ Creating robust APIs and server-side logic with Node.js, Express, and various database technologies.
142
+ </p>
143
+ </div>
144
+
145
+ <!-- Skill Card 4 -->
146
+ <div class="skill-card bg-white dark:bg-gray-700 rounded-xl shadow-md p-6 transition duration-300">
147
+ <div class="w-12 h-12 bg-yellow-100 dark:bg-yellow-900 rounded-lg flex items-center justify-center mb-4">
148
+ <i data-feather="smartphone" class="text-yellow-500 dark:text-yellow-400 w-6 h-6"></i>
149
+ </div>
150
+ <h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">Mobile Development</h3>
151
+ <p class="text-gray-600 dark:text-gray-300">
152
+ Building cross-platform mobile applications with React Native and Flutter for iOS and Android.
153
+ </p>
154
+ </div>
155
+
156
+ <!-- Skill Card 5 -->
157
+ <div class="skill-card bg-white dark:bg-gray-700 rounded-xl shadow-md p-6 transition duration-300">
158
+ <div class="w-12 h-12 bg-red-100 dark:bg-red-900 rounded-lg flex items-center justify-center mb-4">
159
+ <i data-feather="bar-chart-2" class="text-red-500 dark:text-red-400 w-6 h-6"></i>
160
+ </div>
161
+ <h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">Data Visualization</h3>
162
+ <p class="text-gray-600 dark:text-gray-300">
163
+ Creating interactive charts and data stories with D3.js, Chart.js, and other visualization libraries.
164
+ </p>
165
+ </div>
166
+
167
+ <!-- Skill Card 6 -->
168
+ <div class="skill-card bg-white dark:bg-gray-700 rounded-xl shadow-md p-6 transition duration-300">
169
+ <div class="w-12 h-12 bg-green-100 dark:bg-green-900 rounded-lg flex items-center justify-center mb-4">
170
+ <i data-feather="zap" class="text-green-500 dark:text-green-400 w-6 h-6"></i>
171
+ </div>
172
+ <h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">Animation & Effects</h3>
173
+ <p class="text-gray-600 dark:text-gray-300">
174
+ Adding life to websites with GSAP, Three.js, and WebGL animations for immersive experiences.
175
+ </p>
176
+ </div>
177
+ </div>
178
+ </div>
179
+ </section>
180
+
181
+ <!-- CTA Section -->
182
+ <section class="py-20 bg-primary-500 text-white">
183
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
184
+ <h2 class="text-3xl font-bold mb-6">Ready to Start Your Digital Journey?</h2>
185
+ <p class="text-xl mb-8 max-w-3xl mx-auto opacity-90">
186
+ Whether you need a stunning website, a powerful web app, or just some magical digital advice, I'm here to help.
187
+ </p>
188
+ <button class="bg-white text-primary-500 hover:bg-gray-100 px-8 py-4 rounded-lg font-bold text-lg shadow-lg transition">
189
+ Let's Talk <i data-feather="arrow-right" class="inline ml-2"></i>
190
+ </button>
191
+ </div>
192
+ </section>
193
+
194
+ <!-- Footer -->
195
+ <footer class="bg-gray-800 text-gray-300 py-12">
196
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
197
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
198
+ <div>
199
+ <div class="flex items-center mb-4">
200
+ <i data-feather="code" class="text-primary-500"></i>
201
+ <span class="ml-2 text-xl font-bold text-white">CodeCraft</span>
202
+ </div>
203
+ <p class="mb-4">
204
+ Creating digital magic since 2023. Crafting experiences that delight and perform.
205
+ </p>
206
+ <div class="flex space-x-4">
207
+ <a href="#" class="text-gray-400 hover:text-white">
208
+ <i data-feather="github"></i>
209
+ </a>
210
+ <a href="#" class="text-gray-400 hover:text-white">
211
+ <i data-feather="twitter"></i>
212
+ </a>
213
+ <a href="#" class="text-gray-400 hover:text-white">
214
+ <i data-feather="linkedin"></i>
215
+ </a>
216
+ <a href="#" class="text-gray-400 hover:text-white">
217
+ <i data-feather="dribbble"></i>
218
+ </a>
219
+ </div>
220
+ </div>
221
+ <div>
222
+ <h3 class="text-white font-semibold mb-4">Services</h3>
223
+ <ul class="space-y-2">
224
+ <li><a href="#" class="hover:text-white transition">UI/UX Design</a></li>
225
+ <li><a href="#" class="hover:text-white transition">Web Development</a></li>
226
+ <li><a href="#" class="hover:text-white transition">Mobile Apps</a></li>
227
+ <li><a href="#" class="hover:text-white transition">Animation</a></li>
228
+ </ul>
229
+ </div>
230
+ <div>
231
+ <h3 class="text-white font-semibold mb-4">Resources</h3>
232
+ <ul class="space-y-2">
233
+ <li><a href="#" class="hover:text-white transition">Blog</a></li>
234
+ <li><a href="#" class="hover:text-white transition">Tutorials</a></li>
235
+ <li><a href="#" class="hover:text-white transition">Free Templates</a></li>
236
+ <li><a href="#" class="hover:text-white transition">Design System</a></li>
237
+ </ul>
238
+ </div>
239
+ <div>
240
+ <h3 class="text-white font-semibold mb-4">Contact</h3>
241
+ <ul class="space-y-2">
242
+ <li class="flex items-center">
243
+ <i data-feather="mail" class="w-4 h-4 mr-2"></i>
244
+ <span>hello@codecraft.dev</span>
245
+ </li>
246
+ <li class="flex items-center">
247
+ <i data-feather="phone" class="w-4 h-4 mr-2"></i>
248
+ <span>+1 (555) 123-4567</span>
249
+ </li>
250
+ <li class="flex items-center">
251
+ <i data-feather="map-pin" class="w-4 h-4 mr-2"></i>
252
+ <span>San Francisco, CA</span>
253
+ </li>
254
+ </ul>
255
+ </div>
256
+ </div>
257
+ <div class="border-t border-gray-700 mt-12 pt-8 text-center text-gray-400">
258
+ <p>© 2023 CodeCraft Wizardry. All rights reserved.</p>
259
+ </div>
260
+ </div>
261
+ </footer>
262
+
263
+ <script>
264
+ feather.replace();
265
+
266
+ // Simple animation for blob elements
267
+ document.addEventListener('DOMContentLoaded', () => {
268
+ const blobs = document.querySelectorAll('.animate-blob');
269
+ blobs.forEach((blob, index) => {
270
+ blob.style.animationDelay = `${index * 1000}ms`;
271
+ });
272
+ });
273
+ </script>
274
+ </body>
275
  </html>