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