Erikartificial commited on
Commit
3677760
·
verified ·
1 Parent(s): d83e285

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +558 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Social App Vego
3
- emoji: 🔥
4
- colorFrom: red
5
- colorTo: red
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: social-app-vego
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: blue
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,558 @@
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>VEGO - The Future of Social Media</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
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ vegoBlue: '#00f0ff',
15
+ vegoPurple: '#7d00ff',
16
+ vegoDark: '#0a0a1a',
17
+ vegoLight: '#f0f4ff',
18
+ },
19
+ fontFamily: {
20
+ sans: ['Inter', 'sans-serif'],
21
+ display: ['Poppins', 'sans-serif'],
22
+ },
23
+ }
24
+ }
25
+ }
26
+ </script>
27
+ <style>
28
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');
29
+
30
+ body {
31
+ background-color: #0a0a1a;
32
+ color: #f0f4ff;
33
+ font-family: 'Inter', sans-serif;
34
+ }
35
+
36
+ .vego-gradient-text {
37
+ background: linear-gradient(90deg, #00f0ff 0%, #7d00ff 100%);
38
+ -webkit-background-clip: text;
39
+ background-clip: text;
40
+ color: transparent;
41
+ }
42
+
43
+ .vego-gradient-bg {
44
+ background: linear-gradient(135deg, #00f0ff 0%, #7d00ff 100%);
45
+ }
46
+
47
+ .content-card {
48
+ background: rgba(255, 255, 255, 0.05);
49
+ backdrop-filter: blur(10px);
50
+ border: 1px solid rgba(255, 255, 255, 0.1);
51
+ transition: all 0.3s ease;
52
+ }
53
+
54
+ .content-card:hover {
55
+ transform: translateY(-5px);
56
+ box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2);
57
+ }
58
+
59
+ .ai-assistant-bubble {
60
+ animation: pulse 2s infinite;
61
+ }
62
+
63
+ @keyframes pulse {
64
+ 0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
65
+ 70% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
66
+ 100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
67
+ }
68
+
69
+ .avatar-generator-preview {
70
+ background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(125, 0, 255, 0.2) 100%);
71
+ }
72
+
73
+ .tab-active {
74
+ border-bottom: 3px solid #00f0ff;
75
+ color: #00f0ff;
76
+ }
77
+
78
+ /* Custom scrollbar */
79
+ ::-webkit-scrollbar {
80
+ width: 6px;
81
+ }
82
+
83
+ ::-webkit-scrollbar-track {
84
+ background: rgba(255, 255, 255, 0.05);
85
+ }
86
+
87
+ ::-webkit-scrollbar-thumb {
88
+ background: linear-gradient(#00f0ff, #7d00ff);
89
+ border-radius: 10px;
90
+ }
91
+ </style>
92
+ </head>
93
+ <body class="min-h-screen">
94
+ <!-- Navigation -->
95
+ <nav class="bg-vegoDark border-b border-gray-800 fixed w-full z-50">
96
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
97
+ <div class="flex justify-between h-16">
98
+ <div class="flex items-center">
99
+ <div class="flex-shrink-0 flex items-center">
100
+ <span class="text-2xl font-bold vego-gradient-text">VEGO</span>
101
+ </div>
102
+ <div class="hidden md:ml-6 md:flex md:space-x-8">
103
+ <a href="#" class="text-vegoBlue border-vegoBlue inline-flex items-center px-1 pt-1 text-sm font-medium">Home</a>
104
+ <a href="#" class="text-gray-300 hover:text-vegoBlue inline-flex items-center px-1 pt-1 text-sm font-medium">Explore</a>
105
+ <a href="#" class="text-gray-300 hover:text-vegoBlue inline-flex items-center px-1 pt-1 text-sm font-medium">Create</a>
106
+ <a href="#" class="text-gray-300 hover:text-vegoBlue inline-flex items-center px-1 pt-1 text-sm font-medium">Communities</a>
107
+ </div>
108
+ </div>
109
+ <div class="flex items-center">
110
+ <div class="flex-shrink-0">
111
+ <button class="relative inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-vegoDark bg-gradient-to-r from-vegoBlue to-vegoPurple hover:opacity-90 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-vegoBlue">
112
+ <i class="fas fa-plus mr-2"></i> New Post
113
+ </button>
114
+ </div>
115
+ <div class="hidden md:ml-4 md:flex-shrink-0 md:flex md:items-center">
116
+ <button class="p-1 rounded-full text-gray-400 hover:text-vegoBlue focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-vegoBlue">
117
+ <i class="fas fa-bell text-xl"></i>
118
+ </button>
119
+ <button class="ml-3 p-1 rounded-full text-gray-400 hover:text-vegoBlue focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-vegoBlue">
120
+ <i class="fas fa-envelope text-xl"></i>
121
+ </button>
122
+ <div class="ml-3 relative">
123
+ <div>
124
+ <button class="flex text-sm rounded-full focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-vegoBlue" id="user-menu">
125
+ <img class="h-8 w-8 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
126
+ </button>
127
+ </div>
128
+ </div>
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </div>
133
+ </nav>
134
+
135
+ <!-- Main Content -->
136
+ <main class="pt-16 pb-20">
137
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
138
+ <div class="flex flex-col md:flex-row">
139
+ <!-- Left Sidebar -->
140
+ <div class="w-full md:w-1/4 lg:w-1/5 pr-0 md:pr-6 mb-6 md:mb-0">
141
+ <div class="content-card rounded-xl p-4 mb-4">
142
+ <div class="flex items-center mb-4">
143
+ <img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facepad=2&w=256&h=256&q=80" alt="">
144
+ <div class="ml-3">
145
+ <h3 class="font-bold">Alex Johnson</h3>
146
+ <p class="text-xs text-gray-400">@alexjohnson</p>
147
+ </div>
148
+ </div>
149
+ <div class="flex justify-between text-xs text-gray-400 mb-4">
150
+ <div class="text-center">
151
+ <div class="font-bold text-white">1.2K</div>
152
+ <div>Following</div>
153
+ </div>
154
+ <div class="text-center">
155
+ <div class="font-bold text-white">5.7K</div>
156
+ <div>Followers</div>
157
+ </div>
158
+ <div class="text-center">
159
+ <div class="font-bold text-white">24.3K</div>
160
+ <div>Likes</div>
161
+ </div>
162
+ </div>
163
+ <button class="w-full py-2 px-4 border border-vegoBlue text-vegoBlue rounded-lg text-sm font-medium hover:bg-vegoBlue hover:text-vegoDark transition duration-300">
164
+ Edit Profile
165
+ </button>
166
+ </div>
167
+
168
+ <div class="content-card rounded-xl p-4 mb-4">
169
+ <h3 class="font-bold mb-3 flex items-center">
170
+ <i class="fas fa-compass mr-2 text-vegoBlue"></i> Discover
171
+ </h3>
172
+ <ul class="space-y-2">
173
+ <li><a href="#" class="flex items-center text-gray-300 hover:text-vegoBlue"><i class="fas fa-fire mr-2"></i> Trending</a></li>
174
+ <li><a href="#" class="flex items-center text-gray-300 hover:text-vegoBlue"><i class="fas fa-music mr-2"></i> Audio</a></li>
175
+ <li><a href="#" class="flex items-center text-gray-300 hover:text-vegoBlue"><i class="fas fa-paint-brush mr-2"></i> AI Art</a></li>
176
+ <li><a href="#" class="flex items-center text-gray-300 hover:text-vegoBlue"><i class="fas fa-video mr-2"></i> Short Films</a></li>
177
+ <li><a href="#" class="flex items-center text-gray-300 hover:text-vegoBlue"><i class="fas fa-gamepad mr-2"></i> Gaming</a></li>
178
+ <li><a href="#" class="flex items-center text-gray-300 hover:text-vegoBlue"><i class="fas fa-lightbulb mr-2"></i> Ideas</a></li>
179
+ </ul>
180
+ </div>
181
+
182
+ <div class="content-card rounded-xl p-4">
183
+ <h3 class="font-bold mb-3 flex items-center">
184
+ <i class="fas fa-users mr-2 text-vegoBlue"></i> Communities
185
+ </h3>
186
+ <ul class="space-y-3">
187
+ <li>
188
+ <a href="#" class="flex items-center">
189
+ <div class="h-8 w-8 rounded-full bg-gradient-to-r from-vegoBlue to-vegoPurple flex items-center justify-center mr-2">
190
+ <i class="fas fa-atom text-white text-xs"></i>
191
+ </div>
192
+ <span class="text-gray-300 hover:text-vegoBlue">Tech Futurists</span>
193
+ </a>
194
+ </li>
195
+ <li>
196
+ <a href="#" class="flex items-center">
197
+ <div class="h-8 w-8 rounded-full bg-gradient-to-r from-vegoBlue to-vegoPurple flex items-center justify-center mr-2">
198
+ <i class="fas fa-palette text-white text-xs"></i>
199
+ </div>
200
+ <span class="text-gray-300 hover:text-vegoBlue">Digital Artists</span>
201
+ </a>
202
+ </li>
203
+ <li>
204
+ <a href="#" class="flex items-center">
205
+ <div class="h-8 w-8 rounded-full bg-gradient-to-r from-vegoBlue to-vegoPurple flex items-center justify-center mr-2">
206
+ <i class="fas fa-robot text-white text-xs"></i>
207
+ </div>
208
+ <span class="text-gray-300 hover:text-vegoBlue">AI Creators</span>
209
+ </a>
210
+ </li>
211
+ <li>
212
+ <a href="#" class="flex items-center">
213
+ <div class="h-8 w-8 rounded-full bg-gradient-to-r from-vegoBlue to-vegoPurple flex items-center justify-center mr-2">
214
+ <i class="fas fa-video text-white text-xs"></i>
215
+ </div>
216
+ <span class="text-gray-300 hover:text-vegoBlue">Short Film Makers</span>
217
+ </a>
218
+ </li>
219
+ </ul>
220
+ <button class="mt-3 text-xs text-vegoBlue hover:underline">See all communities</button>
221
+ </div>
222
+ </div>
223
+
224
+ <!-- Main Feed -->
225
+ <div class="w-full md:w-2/4 lg:w-3/5 mb-6 md:mb-0">
226
+ <!-- Create Post -->
227
+ <div class="content-card rounded-xl p-4 mb-4">
228
+ <div class="flex">
229
+ <img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facepad=2&w=256&h=256&q=80" alt="">
230
+ <div class="ml-3 flex-1">
231
+ <textarea class="w-full bg-transparent border-0 focus:ring-0 resize-none text-white placeholder-gray-500" rows="2" placeholder="What's evolving today?"></textarea>
232
+ <div class="flex justify-between items-center pt-2 border-t border-gray-800">
233
+ <div class="flex space-x-2">
234
+ <button class="p-2 rounded-full hover:bg-gray-800 text-gray-400 hover:text-vegoBlue">
235
+ <i class="fas fa-image"></i>
236
+ </button>
237
+ <button class="p-2 rounded-full hover:bg-gray-800 text-gray-400 hover:text-vegoBlue">
238
+ <i class="fas fa-video"></i>
239
+ </button>
240
+ <button class="p-2 rounded-full hover:bg-gray-800 text-gray-400 hover:text-vegoBlue">
241
+ <i class="fas fa-microphone"></i>
242
+ </button>
243
+ <button class="p-2 rounded-full hover:bg-gray-800 text-gray-400 hover:text-vegoBlue">
244
+ <i class="fas fa-magic"></i>
245
+ </button>
246
+ </div>
247
+ <button class="px-4 py-1 bg-gradient-to-r from-vegoBlue to-vegoPurple text-white rounded-full text-sm font-medium hover:opacity-90">
248
+ Post
249
+ </button>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ </div>
254
+
255
+ <!-- AI Assistant Bubble -->
256
+ <div class="content-card rounded-xl p-4 mb-4 ai-assistant-bubble border border-vegoBlue">
257
+ <div class="flex items-start">
258
+ <div class="h-10 w-10 rounded-full bg-gradient-to-r from-vegoBlue to-vegoPurple flex items-center justify-center mr-3">
259
+ <i class="fas fa-robot text-white"></i>
260
+ </div>
261
+ <div class="flex-1">
262
+ <h3 class="font-bold text-vegoBlue">VEGO AI Assistant</h3>
263
+ <p class="text-sm text-gray-300 mb-2">Need help creating content? I can generate captions, suggest ideas, or even create AI art for your next post!</p>
264
+ <div class="flex space-x-2">
265
+ <button class="px-3 py-1 bg-gray-800 text-white rounded-full text-xs font-medium hover:bg-gray-700">
266
+ <i class="fas fa-lightbulb mr-1"></i> Idea Generator
267
+ </button>
268
+ <button class="px-3 py-1 bg-gray-800 text-white rounded-full text-xs font-medium hover:bg-gray-700">
269
+ <i class="fas fa-font mr-1"></i> Write Caption
270
+ </button>
271
+ <button class="px-3 py-1 bg-gray-800 text-white rounded-full text-xs font-medium hover:bg-gray-700">
272
+ <i class="fas fa-palette mr-1"></i> Create Art
273
+ </button>
274
+ </div>
275
+ </div>
276
+ </div>
277
+ </div>
278
+
279
+ <!-- Feed Tabs -->
280
+ <div class="flex border-b border-gray-800 mb-4">
281
+ <button class="px-4 py-2 font-medium tab-active">For You</button>
282
+ <button class="px-4 py-2 font-medium text-gray-400 hover:text-vegoBlue">Following</button>
283
+ <button class="px-4 py-2 font-medium text-gray-400 hover:text-vegoBlue">Trending</button>
284
+ <button class="px-4 py-2 font-medium text-gray-400 hover:text-vegoBlue">AI Generated</button>
285
+ </div>
286
+
287
+ <!-- Feed Content -->
288
+ <div class="space-y-4">
289
+ <!-- Post 1: AI Generated Video -->
290
+ <div class="content-card rounded-xl overflow-hidden">
291
+ <div class="p-4">
292
+ <div class="flex items-start">
293
+ <img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/44.jpg" alt="">
294
+ <div class="ml-3">
295
+ <h3 class="font-bold">Sarah Chen</h3>
296
+ <p class="text-xs text-gray-400">@sarahchen · 2h ago · <span class="text-vegoBlue">#AIGenerated</span></p>
297
+ </div>
298
+ <button class="ml-auto text-gray-400 hover:text-vegoBlue">
299
+ <i class="fas fa-ellipsis-h"></i>
300
+ </button>
301
+ </div>
302
+ <p class="mt-3 mb-2">Just created this short film using VEGO's AI video generator! The script was AI-written and the visuals were generated from my text prompts. Mind blown! 🤯</p>
303
+ <div class="flex space-x-2 mb-3">
304
+ <span class="px-2 py-1 bg-gray-800 text-xs rounded-full">#AI</span>
305
+ <span class="px-2 py-1 bg-gray-800 text-xs rounded-full">#Filmmaking</span>
306
+ <span class="px-2 py-1 bg-gray-800 text-xs rounded-full">#Future</span>
307
+ </div>
308
+ </div>
309
+ <div class="relative">
310
+ <img src="https://source.unsplash.com/random/800x450/?future,technology" alt="" class="w-full h-auto">
311
+ <div class="absolute bottom-4 left-4 bg-black bg-opacity-50 px-3 py-1 rounded-full text-sm">
312
+ <i class="fas fa-play mr-1"></i> 1:32
313
+ </div>
314
+ </div>
315
+ <div class="p-4 flex justify-between text-gray-400">
316
+ <button class="flex items-center hover:text-vegoBlue">
317
+ <i class="far fa-heart mr-1"></i> 1.2K
318
+ </button>
319
+ <button class="flex items-center hover:text-vegoBlue">
320
+ <i class="far fa-comment mr-1"></i> 243
321
+ </button>
322
+ <button class="flex items-center hover:text-vegoBlue">
323
+ <i class="fas fa-retweet mr-1"></i> 87
324
+ </button>
325
+ <button class="flex items-center hover:text-vegoBlue">
326
+ <i class="far fa-bookmark mr-1"></i>
327
+ </button>
328
+ </div>
329
+ </div>
330
+
331
+ <!-- Post 2: AI Art -->
332
+ <div class="content-card rounded-xl overflow-hidden">
333
+ <div class="p-4">
334
+ <div class="flex items-start">
335
+ <img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="">
336
+ <div class="ml-3">
337
+ <h3 class="font-bold">Marcus Wong</h3>
338
+ <p class="text-xs text-gray-400">@marcusw · 4h ago · <span class="text-vegoBlue">#AIArt</span></p>
339
+ </div>
340
+ <button class="ml-auto text-gray-400 hover:text-vegoBlue">
341
+ <i class="fas fa-ellipsis-h"></i>
342
+ </button>
343
+ </div>
344
+ <p class="mt-3 mb-2">"Cyberpunk Samurai in Neon Tokyo" - generated with VEGO's AI art tool using just a text prompt. The details are incredible! What should I generate next?</p>
345
+ <div class="flex space-x-2 mb-3">
346
+ <span class="px-2 py-1 bg-gray-800 text-xs rounded-full">#DigitalArt</span>
347
+ <span class="px-2 py-1 bg-gray-800 text-xs rounded-full">#Cyberpunk</span>
348
+ <span class="px-2 py-1 bg-gray-800 text-xs rounded-full">#AI</span>
349
+ </div>
350
+ </div>
351
+ <div class="p-2">
352
+ <img src="https://source.unsplash.com/random/800x500/?cyberpunk,samurai" alt="" class="w-full h-auto rounded-lg">
353
+ </div>
354
+ <div class="p-4 flex justify-between text-gray-400">
355
+ <button class="flex items-center hover:text-vegoBlue">
356
+ <i class="far fa-heart mr-1"></i> 3.4K
357
+ </button>
358
+ <button class="flex items-center hover:text-vegoBlue">
359
+ <i class="far fa-comment mr-1"></i> 512
360
+ </button>
361
+ <button class="flex items-center hover:text-vegoBlue">
362
+ <i class="fas fa-retweet mr-1"></i> 231
363
+ </button>
364
+ <button class="flex items-center hover:text-vegoBlue">
365
+ <i class="far fa-bookmark mr-1"></i>
366
+ </button>
367
+ </div>
368
+ </div>
369
+
370
+ <!-- Post 3: AI Written Thread -->
371
+ <div class="content-card rounded-xl overflow-hidden">
372
+ <div class="p-4">
373
+ <div class="flex items-start">
374
+ <img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="">
375
+ <div class="ml-3">
376
+ <h3 class="font-bold">Dr. Elena Rodriguez</h3>
377
+ <p class="text-xs text-gray-400">@elenarod · 6h ago · <span class="text-vegoBlue">#AIWritten</span></p>
378
+ </div>
379
+ <button class="ml-auto text-gray-400 hover:text-vegoBlue">
380
+ <i class="fas fa-ellipsis-h"></i>
381
+ </button>
382
+ </div>
383
+ <p class="mt-3 mb-2">How AI is transforming creative industries - a thread 🧵 (content co-created with VEGO AI)</p>
384
+ <div class="flex space-x-2 mb-3">
385
+ <span class="px-2 py-1 bg-gray-800 text-xs rounded-full">#AI</span>
386
+ <span class="px-2 py-1 bg-gray-800 text-xs rounded-full">#Creativity</span>
387
+ <span class="px-2 py-1 bg-gray-800 text-xs rounded-full">#FutureOfWork</span>
388
+ </div>
389
+ </div>
390
+ <div class="px-4 pb-4">
391
+ <div class="border-l-2 border-vegoBlue pl-4 py-2 mb-2">
392
+ <p class="font-medium">1/8 AI is not replacing human creativity, but augmenting it. Tools like VEGO allow creators to explore ideas faster, prototype concepts visually, and overcome creative blocks.</p>
393
+ </div>
394
+ <div class="border-l-2 border-vegoBlue pl-4 py-2 mb-2">
395
+ <p class="font-medium">2/8 The most powerful creative workflows will be human-AI collaborations. The AI generates possibilities based on your direction, you curate and refine. This is already happening in music, design, and writing.</p>
396
+ </div>
397
+ <div class="border-l-2 border-vegoBlue pl-4 py-2">
398
+ <p class="text-sm text-gray-400">5 more replies</p>
399
+ </div>
400
+ </div>
401
+ <div class="p-4 flex justify-between text-gray-400 border-t border-gray-800">
402
+ <button class="flex items-center hover:text-vegoBlue">
403
+ <i class="far fa-heart mr-1"></i> 892
404
+ </button>
405
+ <button class="flex items-center hover:text-vegoBlue">
406
+ <i class="far fa-comment mr-1"></i> 147
407
+ </button>
408
+ <button class="flex items-center hover:text-vegoBlue">
409
+ <i class="fas fa-retweet mr-1"></i> 56
410
+ </button>
411
+ <button class="flex items-center hover:text-vegoBlue">
412
+ <i class="far fa-bookmark mr-1"></i>
413
+ </button>
414
+ </div>
415
+ </div>
416
+ </div>
417
+ </div>
418
+
419
+ <!-- Right Sidebar -->
420
+ <div class="w-full md:w-1/4 lg:w-1/5 pl-0 md:pl-6">
421
+ <!-- AI Tools -->
422
+ <div class="content-card rounded-xl p-4 mb-4">
423
+ <h3 class="font-bold mb-3 flex items-center">
424
+ <i class="fas fa-magic mr-2 text-vegoBlue"></i> VEGO AI Tools
425
+ </h3>
426
+ <div class="space-y-3">
427
+ <button class="w-full flex items-center p-3 bg-gray-800 rounded-lg hover:bg-gray-700">
428
+ <div class="h-8 w-8 rounded-full bg-gradient-to-r from-vegoBlue to-vegoPurple flex items-center justify-center mr-3">
429
+ <i class="fas fa-font text-xs text-white"></i>
430
+ </div>
431
+ <span class="text-sm">Text to Image</span>
432
+ </button>
433
+ <button class="w-full flex items-center p-3 bg-gray-800 rounded-lg hover:bg-gray-700">
434
+ <div class="h-8 w-8 rounded-full bg-gradient-to-r from-vegoBlue to-vegoPurple flex items-center justify-center mr-3">
435
+ <i class="fas fa-video text-xs text-white"></i>
436
+ </div>
437
+ <span class="text-sm">Text to Video</span>
438
+ </button>
439
+ <button class="w-full flex items-center p-3 bg-gray-800 rounded-lg hover:bg-gray-700">
440
+ <div class="h-8 w-8 rounded-full bg-gradient-to-r from-vegoBlue to-vegoPurple flex items-center justify-center mr-3">
441
+ <i class="fas fa-microphone text-xs text-white"></i>
442
+ </div>
443
+ <span class="text-sm">Voice to Avatar</span>
444
+ </button>
445
+ <button class="w-full flex items-center p-3 bg-gray-800 rounded-lg hover:bg-gray-700">
446
+ <div class="h-8 w-8 rounded-full bg-gradient-to-r from-vegoBlue to-vegoPurple flex items-center justify-center mr-3">
447
+ <i class="fas fa-robot text-xs text-white"></i>
448
+ </div>
449
+ <span class="text-sm">AI Content Writer</span>
450
+ </button>
451
+ </div>
452
+ </div>
453
+
454
+ <!-- Avatar Generator -->
455
+ <div class="content-card rounded-xl p-4 mb-4">
456
+ <h3 class="font-bold mb-3 flex items-center">
457
+ <i class="fas fa-user-astronaut mr-2 text-vegoBlue"></i> Create Your AI Avatar
458
+ </h3>
459
+ <div class="avatar-generator-preview rounded-lg p-4 mb-3 flex flex-col items-center">
460
+ <div class="h-24 w-24 rounded-full bg-gray-700 mb-3 overflow-hidden">
461
+ <img src="https://source.unsplash.com/random/200x200/?portrait" alt="" class="w-full h-full object-cover">
462
+ </div>
463
+ <p class="text-sm text-center mb-2">Your digital twin for VEGO</p>
464
+ <button class="px-3 py-1 bg-gradient-to-r from-vegoBlue to-vegoPurple text-white rounded-full text-xs font-medium hover:opacity-90">
465
+ Generate Now
466
+ </button>
467
+ </div>
468
+ <p class="text-xs text-gray-400 text-center">Use AI to create a customizable avatar that can represent you across VEGO.</p>
469
+ </div>
470
+
471
+ <!-- Trending Topics -->
472
+ <div class="content-card rounded-xl p-4">
473
+ <h3 class="font-bold mb-3 flex items-center">
474
+ <i class="fas fa-hashtag mr-2 text-vegoBlue"></i> Trending Now
475
+ </h3>
476
+ <div class="space-y-4">
477
+ <div>
478
+ <a href="#" class="font-medium hover:text-vegoBlue">#AICreativity</a>
479
+ <p class="text-xs text-gray-400">12.4K posts</p>
480
+ </div>
481
+ <div>
482
+ <a href="#" class="font-medium hover:text-vegoBlue">#DigitalArtRevolution</a>
483
+ <p class="text-xs text-gray-400">8.7K posts</p>
484
+ </div>
485
+ <div>
486
+ <a href="#" class="font-medium hover:text-vegoBlue">#VEGOeffects</a>
487
+ <p class="text-xs text-gray-400">5.3K posts</p>
488
+ </div>
489
+ <div>
490
+ <a href="#" class="font-medium hover:text-vegoBlue">#FutureOfSocial</a>
491
+ <p class="text-xs text-gray-400">4.9K posts</p>
492
+ </div>
493
+ <div>
494
+ <a href="#" class="font-medium hover:text-vegoBlue">#AIVideo</a>
495
+ <p class="text-xs text-gray-400">3.8K posts</p>
496
+ </div>
497
+ </div>
498
+ <button class="mt-3 text-xs text-vegoBlue hover:underline">Show more</button>
499
+ </div>
500
+ </div>
501
+ </div>
502
+ </div>
503
+ </main>
504
+
505
+ <!-- Bottom Mobile Navigation -->
506
+ <div class="md:hidden fixed bottom-0 left-0 right-0 bg-vegoDark border-t border-gray-800">
507
+ <div class="flex justify-around">
508
+ <a href="#" class="p-4 text-vegoBlue">
509
+ <i class="fas fa-home text-xl"></i>
510
+ </a>
511
+ <a href="#" class="p-4 text-gray-400 hover:text-vegoBlue">
512
+ <i class="fas fa-search text-xl"></i>
513
+ </a>
514
+ <a href="#" class="p-4 text-gray-400 hover:text-vegoBlue relative">
515
+ <i class="fas fa-plus-circle text-xl"></i>
516
+ </a>
517
+ <a href="#" class="p-4 text-gray-400 hover:text-vegoBlue">
518
+ <i class="fas fa-bell text-xl"></i>
519
+ </a>
520
+ <a href="#" class="p-4 text-gray-400 hover:text-vegoBlue">
521
+ <i class="fas fa-user text-xl"></i>
522
+ </a>
523
+ </div>
524
+ </div>
525
+
526
+ <script>
527
+ // Simple interactive elements
528
+ document.addEventListener('DOMContentLoaded', function() {
529
+ // Tab switching
530
+ const tabs = document.querySelectorAll('.flex.border-b button');
531
+ tabs.forEach(tab => {
532
+ tab.addEventListener('click', () => {
533
+ tabs.forEach(t => t.classList.remove('tab-active', 'text-vegoBlue'));
534
+ tabs.forEach(t => t.classList.add('text-gray-400'));
535
+ tab.classList.add('tab-active', 'text-vegoBlue');
536
+ tab.classList.remove('text-gray-400');
537
+ });
538
+ });
539
+
540
+ // AI assistant buttons
541
+ const aiButtons = document.querySelectorAll('.ai-assistant-bubble button');
542
+ aiButtons.forEach(button => {
543
+ button.addEventListener('click', () => {
544
+ alert('VEGO AI is ready to assist you with this feature!');
545
+ });
546
+ });
547
+
548
+ // Avatar generator
549
+ const avatarBtn = document.querySelector('.avatar-generator-preview button');
550
+ if(avatarBtn) {
551
+ avatarBtn.addEventListener('click', () => {
552
+ alert('Launching VEGO Avatar Generator...');
553
+ });
554
+ }
555
+ });
556
+ </script>
557
+ <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=Erikartificial/social-app-vego" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
558
+ </html>