Cokybit commited on
Commit
c2dc52d
·
verified ·
1 Parent(s): 95b8cea

Import project - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +307 -18
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Try
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: try
3
+ emoji: 🐳
4
  colorFrom: pink
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,308 @@
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>Modern Portfolio</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
9
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ <style>
13
+ .hero-gradient {
14
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
15
+ }
16
+ .card-hover {
17
+ transition: all 0.3s ease;
18
+ }
19
+ .card-hover:hover {
20
+ transform: translateY(-5px);
21
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
22
+ }
23
+ .text-gradient {
24
+ background: linear-gradient(90deg, #667eea, #764ba2);
25
+ -webkit-background-clip: text;
26
+ background-clip: text;
27
+ color: transparent;
28
+ }
29
+ </style>
30
+ </head>
31
+ <body class="font-sans antialiased text-gray-800">
32
+ <!-- Navigation -->
33
+ <nav class="bg-white shadow-sm fixed w-full z-10">
34
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
35
+ <div class="flex justify-between h-16">
36
+ <div class="flex items-center">
37
+ <span class="text-xl font-bold text-gradient">Portfolio</span>
38
+ </div>
39
+ <div class="hidden md:flex items-center space-x-8">
40
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition">Home</a>
41
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition">Projects</a>
42
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition">About</a>
43
+ <a href="#" class="text-gray-700 hover:text-indigo-600 transition">Contact</a>
44
+ </div>
45
+ <div class="md:hidden flex items-center">
46
+ <button class="text-gray-700">
47
+ <i data-feather="menu"></i>
48
+ </button>
49
+ </div>
50
+ </div>
51
+ </div>
52
+ </nav>
53
+
54
+ <!-- Hero Section -->
55
+ <section class="hero-gradient min-h-screen flex items-center pt-16">
56
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
57
+ <div class="grid md:grid-cols-2 gap-12 items-center">
58
+ <div data-aos="fade-right">
59
+ <h1 class="text-4xl md:text-5xl font-bold text-white mb-6">Hi, I'm <span class="text-indigo-200">Alex</span></h1>
60
+ <h2 class="text-2xl md:text-3xl font-semibold text-indigo-100 mb-6">Frontend Developer & UI Designer</h2>
61
+ <p class="text-indigo-100 mb-8 text-lg">I create beautiful, responsive websites with modern technologies and thoughtful user experiences.</p>
62
+ <div class="flex space-x-4">
63
+ <button class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-indigo-50 transition">View Projects</button>
64
+ <button class="border-2 border-white text-white px-6 py-3 rounded-lg font-medium hover:bg-white hover:text-indigo-600 transition">Contact Me</button>
65
+ </div>
66
+ </div>
67
+ <div data-aos="fade-left" class="flex justify-center">
68
+ <div class="relative">
69
+ <div class="absolute -inset-4 bg-indigo-400 rounded-full opacity-20 blur-lg"></div>
70
+ <img src="http://static.photos/technology/640x360/42" alt="Developer" class="relative rounded-full w-64 h-64 object-cover border-4 border-white shadow-xl">
71
+ </div>
72
+ </div>
73
+ </div>
74
+ </div>
75
+ </section>
76
+
77
+ <!-- Projects Section -->
78
+ <section class="py-20 bg-gray-50">
79
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
80
+ <div class="text-center mb-16" data-aos="fade-up">
81
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">My Projects</h2>
82
+ <div class="w-20 h-1 bg-gradient-to-r from-indigo-500 to-purple-600 mx-auto"></div>
83
+ </div>
84
+
85
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
86
+ <!-- Project 1 -->
87
+ <div class="bg-white rounded-xl overflow-hidden shadow-md card-hover" data-aos="fade-up" data-aos-delay="100">
88
+ <img src="http://static.photos/technology/640x360/1" alt="Project 1" class="w-full h-48 object-cover">
89
+ <div class="p-6">
90
+ <h3 class="text-xl font-semibold mb-2">E-commerce Platform</h3>
91
+ <p class="text-gray-600 mb-4">A modern online store with seamless checkout experience.</p>
92
+ <div class="flex flex-wrap gap-2">
93
+ <span class="bg-indigo-100 text-indigo-800 text-xs px-3 py-1 rounded-full">React</span>
94
+ <span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Tailwind</span>
95
+ <span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">Node.js</span>
96
+ </div>
97
+ </div>
98
+ </div>
99
+
100
+ <!-- Project 2 -->
101
+ <div class="bg-white rounded-xl overflow-hidden shadow-md card-hover" data-aos="fade-up" data-aos-delay="200">
102
+ <img src="http://static.photos/technology/640x360/2" alt="Project 2" class="w-full h-48 object-cover">
103
+ <div class="p-6">
104
+ <h3 class="text-xl font-semibold mb-2">Task Management App</h3>
105
+ <p class="text-gray-600 mb-4">Productivity application with team collaboration features.</p>
106
+ <div class="flex flex-wrap gap-2">
107
+ <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Vue.js</span>
108
+ <span class="bg-yellow-100 text-yellow-800 text-xs px-3 py-1 rounded-full">Firebase</span>
109
+ </div>
110
+ </div>
111
+ </div>
112
+
113
+ <!-- Project 3 -->
114
+ <div class="bg-white rounded-xl overflow-hidden shadow-md card-hover" data-aos="fade-up" data-aos-delay="300">
115
+ <img src="http://static.photos/technology/640x360/3" alt="Project 3" class="w-full h-48 object-cover">
116
+ <div class="p-6">
117
+ <h3 class="text-xl font-semibold mb-2">Portfolio Website</h3>
118
+ <p class="text-gray-600 mb-4">Minimalist portfolio with smooth animations.</p>
119
+ <div class="flex flex-wrap gap-2">
120
+ <span class="bg-pink-100 text-pink-800 text-xs px-3 py-1 rounded-full">GSAP</span>
121
+ <span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full">HTML/CSS</span>
122
+ </div>
123
+ </div>
124
+ </div>
125
+ </div>
126
+
127
+ <div class="text-center mt-12" data-aos="fade-up">
128
+ <button class="bg-indigo-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-indigo-700 transition">
129
+ View All Projects
130
+ </button>
131
+ </div>
132
+ </div>
133
+ </section>
134
+
135
+ <!-- Skills Section -->
136
+ <section class="py-20 bg-white">
137
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
138
+ <div class="text-center mb-16" data-aos="fade-up">
139
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">My Skills</h2>
140
+ <div class="w-20 h-1 bg-gradient-to-r from-indigo-500 to-purple-600 mx-auto"></div>
141
+ </div>
142
+
143
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
144
+ <!-- Skill 1 -->
145
+ <div class="text-center p-6 rounded-xl bg-gray-50" data-aos="zoom-in" data-aos-delay="100">
146
+ <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
147
+ <i data-feather="code" class="text-indigo-600 w-8 h-8"></i>
148
+ </div>
149
+ <h3 class="text-xl font-semibold mb-2">Frontend</h3>
150
+ <p class="text-gray-600">HTML, CSS, JavaScript, React, Vue.js</p>
151
+ </div>
152
+
153
+ <!-- Skill 2 -->
154
+ <div class="text-center p-6 rounded-xl bg-gray-50" data-aos="zoom-in" data-aos-delay="200">
155
+ <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-4">
156
+ <i data-feather="pen-tool" class="text-purple-600 w-8 h-8"></i>
157
+ </div>
158
+ <h3 class="text-xl font-semibold mb-2">UI/UX Design</h3>
159
+ <p class="text-gray-600">Figma, Adobe XD, User Research</p>
160
+ </div>
161
+
162
+ <!-- Skill 3 -->
163
+ <div class="text-center p-6 rounded-xl bg-gray-50" data-aos="zoom-in" data-aos-delay="300">
164
+ <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
165
+ <i data-feather="smartphone" class="text-blue-600 w-8 h-8"></i>
166
+ </div>
167
+ <h3 class="text-xl font-semibold mb-2">Responsive</h3>
168
+ <p class="text-gray-600">Mobile-first, TailwindCSS, Flexbox</p>
169
+ </div>
170
+
171
+ <!-- Skill 4 -->
172
+ <div class="text-center p-6 rounded-xl bg-gray-50" data-aos="zoom-in" data-aos-delay="400">
173
+ <div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-4">
174
+ <i data-feather="database" class="text-green-600 w-8 h-8"></i>
175
+ </div>
176
+ <h3 class="text-xl font-semibold mb-2">Backend</h3>
177
+ <p class="text-gray-600">Node.js, Express, MongoDB</p>
178
+ </div>
179
+ </div>
180
+ </div>
181
+ </section>
182
+
183
+ <!-- Contact Section -->
184
+ <section class="py-20 bg-gray-50">
185
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
186
+ <div class="text-center mb-16" data-aos="fade-up">
187
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Get In Touch</h2>
188
+ <div class="w-20 h-1 bg-gradient-to-r from-indigo-500 to-purple-600 mx-auto"></div>
189
+ </div>
190
+
191
+ <div class="grid md:grid-cols-2 gap-12">
192
+ <div data-aos="fade-right">
193
+ <h3 class="text-2xl font-semibold mb-6">Let's work together</h3>
194
+ <p class="text-gray-600 mb-8">I'm always open to discussing product design work or partnership opportunities. Feel free to reach out with any questions or project ideas.</p>
195
+
196
+ <div class="space-y-4">
197
+ <div class="flex items-center">
198
+ <div class="bg-indigo-100 p-3 rounded-full mr-4">
199
+ <i data-feather="mail" class="text-indigo-600"></i>
200
+ </div>
201
+ <div>
202
+ <h4 class="font-medium">Email</h4>
203
+ <p class="text-gray-600">hello@example.com</p>
204
+ </div>
205
+ </div>
206
+
207
+ <div class="flex items-center">
208
+ <div class="bg-purple-100 p-3 rounded-full mr-4">
209
+ <i data-feather="phone" class="text-purple-600"></i>
210
+ </div>
211
+ <div>
212
+ <h4 class="font-medium">Phone</h4>
213
+ <p class="text-gray-600">+1 (555) 123-4567</p>
214
+ </div>
215
+ </div>
216
+
217
+ <div class="flex items-center">
218
+ <div class="bg-blue-100 p-3 rounded-full mr-4">
219
+ <i data-feather="map-pin" class="text-blue-600"></i>
220
+ </div>
221
+ <div>
222
+ <h4 class="font-medium">Location</h4>
223
+ <p class="text-gray-600">San Francisco, CA</p>
224
+ </div>
225
+ </div>
226
+ </div>
227
+ </div>
228
+
229
+ <div data-aos="fade-left">
230
+ <form class="bg-white p-8 rounded-xl shadow-md">
231
+ <div class="mb-6">
232
+ <label for="name" class="block text-gray-700 mb-2">Name</label>
233
+ <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
234
+ </div>
235
+
236
+ <div class="mb-6">
237
+ <label for="email" class="block text-gray-700 mb-2">Email</label>
238
+ <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
239
+ </div>
240
+
241
+ <div class="mb-6">
242
+ <label for="message" class="block text-gray-700 mb-2">Message</label>
243
+ <textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500"></textarea>
244
+ </div>
245
+
246
+ <button type="submit" class="w-full bg-indigo-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-indigo-700 transition">
247
+ Send Message
248
+ </button>
249
+ </form>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ </section>
254
+
255
+ <!-- Footer -->
256
+ <footer class="bg-gray-800 text-white py-12">
257
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
258
+ <div class="grid md:grid-cols-3 gap-8">
259
+ <div>
260
+ <h3 class="text-xl font-bold mb-4">Portfolio</h3>
261
+ <p class="text-gray-400">Creating digital experiences that matter.</p>
262
+ </div>
263
+
264
+ <div>
265
+ <h4 class="text-lg font-semibold mb-4">Quick Links</h4>
266
+ <ul class="space-y-2">
267
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li>
268
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Projects</a></li>
269
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li>
270
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
271
+ </ul>
272
+ </div>
273
+
274
+ <div>
275
+ <h4 class="text-lg font-semibold mb-4">Connect</h4>
276
+ <div class="flex space-x-4">
277
+ <a href="#" class="bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-600 transition">
278
+ <i data-feather="github"></i>
279
+ </a>
280
+ <a href="#" class="bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-blue-500 transition">
281
+ <i data-feather="twitter"></i>
282
+ </a>
283
+ <a href="#" class="bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-blue-700 transition">
284
+ <i data-feather="linkedin"></i>
285
+ </a>
286
+ <a href="#" class="bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-pink-600 transition">
287
+ <i data-feather="dribbble"></i>
288
+ </a>
289
+ </div>
290
+ </div>
291
+ </div>
292
+
293
+ <div class="border-t border-gray-700 mt-12 pt-8 text-center text-gray-400">
294
+ <p>&copy; 2023 Portfolio. All rights reserved.</p>
295
+ </div>
296
+ </div>
297
+ </footer>
298
+
299
+ <script>
300
+ AOS.init({
301
+ duration: 800,
302
+ easing: 'ease-in-out',
303
+ once: true
304
+ });
305
+ feather.replace();
306
+ </script>
307
+ </body>
308
  </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Import project