Spaces:
Running
Running
File size: 49,153 Bytes
a193c4d |
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 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 |
<!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">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #0f0e17;
color: white;
overflow-x: hidden;
}
.gradient-bg {
background: linear-gradient(135deg, #3a0ca3 0%, #4361ee 100%);
}
.gradient-text {
background: linear-gradient(90deg, #4cc9f0, #4361ee);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.post-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(67, 97, 238, 0.3);
}
.ai-assistant-bubble {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(67, 97, 238, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
}
}
.content-feed {
scrollbar-width: thin;
scrollbar-color: #4361ee #0f0e17;
}
.content-feed::-webkit-scrollbar {
width: 6px;
}
.content-feed::-webkit-scrollbar-track {
background: #0f0e17;
}
.content-feed::-webkit-scrollbar-thumb {
background-color: #4361ee;
border-radius: 20px;
}
.glow {
filter: drop-shadow(0 0 8px rgba(67, 97, 238, 0.7));
}
.avatar-ring {
border: 2px solid transparent;
background: linear-gradient(#0f0e17, #0f0e17) padding-box,
linear-gradient(135deg, #3a0ca3 0%, #4361ee 100%) border-box;
}
.typewriter {
overflow: hidden;
border-right: .15em solid #4cc9f0;
white-space: nowrap;
animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #4cc9f0; }
}
</style>
</head>
<body>
<div class="flex h-screen overflow-hidden">
<!-- Sidebar -->
<div class="hidden md:flex md:flex-shrink-0">
<div class="flex flex-col w-64 gradient-bg">
<div class="flex items-center justify-center h-16 flex-shrink-0 px-4">
<div class="flex items-center">
<i class="fas fa-brain text-3xl mr-2 text-white"></i>
<span class="text-xl font-bold text-white">VEGO</span>
</div>
</div>
<div class="flex flex-col flex-grow overflow-y-auto">
<div class="px-4 py-4">
<div class="flex items-center space-x-4 p-2 rounded-lg bg-indigo-900 bg-opacity-50">
<div class="relative">
<img class="w-10 h-10 rounded-full avatar-ring" src="https://randomuser.me/api/portraits/men/32.jpg" alt="User profile">
<span class="absolute bottom-0 right-0 block h-3 w-3 rounded-full bg-green-500 ring-2 ring-white"></span>
</div>
<div>
<p class="text-sm font-medium">Erikleo Cepa</p>
<p class="text-xs text-indigo-200">@erikleocepa</p>
</div>
<i class="fas fa-check-circle text-yellow-400 ml-auto"></i>
</div>
</div>
<nav class="flex-1 px-2 space-y-1">
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-lg text-white bg-indigo-900 bg-opacity-30">
<i class="fas fa-home mr-3"></i>
Home
</a>
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-lg text-indigo-200 hover:bg-indigo-900 hover:bg-opacity-30">
<i class="fas fa-compass mr-3"></i>
Explore
</a>
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-lg text-indigo-200 hover:bg-indigo-900 hover:bg-opacity-30">
<i class="fas fa-users mr-3"></i>
Communities
</a>
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-lg text-indigo-200 hover:bg-indigo-900 hover:bg-opacity-30">
<i class="fas fa-bell mr-3"></i>
Notifications
</a>
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-lg text-indigo-200 hover:bg-indigo-900 hover:bg-opacity-30">
<i class="fas fa-envelope mr-3"></i>
Messages
</a>
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-lg text-indigo-200 hover:bg-indigo-900 hover:bg-opacity-30">
<i class="fas fa-bookmark mr-3"></i>
Bookmarks
</a>
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-lg text-indigo-200 hover:bg-indigo-900 hover:bg-opacity-30">
<i class="fas fa-user mr-3"></i>
Profile
</a>
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-lg text-indigo-200 hover:bg-indigo-900 hover:bg-opacity-30">
<i class="fas fa-cog mr-3"></i>
Settings
</a>
</nav>
<div class="px-4 py-4">
<button class="w-full flex items-center justify-center px-4 py-3 text-sm font-medium rounded-lg text-white bg-gradient-to-r from-blue-400 to-indigo-600 hover:from-blue-500 hover:to-indigo-700">
<i class="fas fa-plus mr-2"></i>
Create Post
</button>
</div>
</div>
</div>
</div>
<!-- Main content -->
<div class="flex flex-col flex-1 overflow-hidden">
<!-- Top navigation -->
<div class="flex items-center justify-between h-16 flex-shrink-0 px-4 bg-gray-900 border-b border-gray-800">
<div class="flex items-center md:hidden">
<button class="text-gray-400 hover:text-white focus:outline-none">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="flex-1 max-w-xl mx-4">
<div class="relative">
<div class="absolute inset-y-0 left-0 flex items-center pl-3">
<i class="fas fa-search text-gray-400"></i>
</div>
<input class="block w-full pl-10 pr-3 py-2 rounded-lg bg-gray-800 border border-gray-700 text-white placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent" placeholder="Search VEGO...">
</div>
</div>
<div class="flex items-center space-x-4">
<button class="p-1 text-gray-400 rounded-full hover:text-white focus:outline-none">
<i class="fas fa-video"></i>
</button>
<button class="p-1 text-gray-400 rounded-full hover:text-white focus:outline-none">
<i class="fas fa-comment-dots"></i>
</button>
<div class="relative">
<button class="p-1 text-gray-400 rounded-full hover:text-white focus:outline-none">
<i class="fas fa-bell"></i>
</button>
<span class="absolute top-0 right-0 w-2 h-2 rounded-full bg-red-500"></span>
</div>
<div class="relative md:hidden">
<button class="flex items-center text-sm rounded-full focus:outline-none">
<img class="w-8 h-8 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="User profile">
</button>
</div>
</div>
</div>
<!-- Content area -->
<div class="flex flex-1 overflow-hidden">
<!-- Main feed -->
<div class="flex-1 overflow-y-auto content-feed">
<div class="max-w-2xl mx-auto p-4">
<!-- Create post -->
<div class="bg-gray-800 rounded-xl p-4 mb-6 shadow-lg">
<div class="flex items-start space-x-3">
<img class="w-10 h-10 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="User profile">
<div class="flex-1">
<div class="flex items-center space-x-2">
<button class="flex-1 text-left px-4 py-2 rounded-full bg-gray-700 text-gray-300 hover:bg-gray-600">
What's on your mind?
</button>
<button class="p-2 text-gray-400 hover:text-white">
<i class="fas fa-image"></i>
</button>
<button class="p-2 text-gray-400 hover:text-white">
<i class="fas fa-video"></i>
</button>
<button class="p-2 text-gray-400 hover:text-white">
<i class="fas fa-microphone"></i>
</button>
</div>
<div class="mt-3 flex justify-between items-center">
<div class="flex space-x-2">
<button class="text-xs px-3 py-1 rounded-full bg-gray-700 text-gray-300 hover:bg-gray-600">
<i class="fas fa-magic mr-1"></i> AI Assist
</button>
<button class="text-xs px-3 py-1 rounded-full bg-gray-700 text-gray-300 hover:bg-gray-600">
<i class="fas fa-robot mr-1"></i> Generate
</button>
</div>
<button class="text-sm px-4 py-1 rounded-full bg-gradient-to-r from-blue-500 to-indigo-600 text-white hover:from-blue-600 hover:to-indigo-700">
Post
</button>
</div>
</div>
</div>
</div>
<!-- Stories -->
<div class="bg-gray-800 rounded-xl p-4 mb-6 shadow-lg overflow-hidden">
<div class="flex justify-between items-center mb-3">
<h3 class="font-medium">Stories</h3>
<button class="text-sm text-indigo-400 hover:text-indigo-300">See All</button>
</div>
<div class="flex space-x-4 overflow-x-auto pb-2">
<div class="flex-shrink-0 relative">
<div class="w-24 h-32 rounded-xl bg-gradient-to-br from-purple-500 to-blue-600 flex items-center justify-center">
<i class="fas fa-plus text-white text-xl"></i>
</div>
<p class="text-xs text-center mt-1">Your Story</p>
</div>
<div class="flex-shrink-0 relative">
<div class="w-24 h-32 rounded-xl bg-gray-700 overflow-hidden">
<img class="w-full h-full object-cover" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330" alt="Story">
</div>
<div class="absolute top-2 left-2 w-8 h-8 rounded-full border-2 border-indigo-500 overflow-hidden">
<img class="w-full h-full object-cover" src="https://randomuser.me/api/portraits/women/44.jpg" alt="User">
</div>
<p class="text-xs text-center mt-1">Sarah</p>
</div>
<div class="flex-shrink-0 relative">
<div class="w-24 h-32 rounded-xl bg-gray-700 overflow-hidden">
<img class="w-full h-full object-cover" src="https://images.unsplash.com/photo-1506794778202-cad84cf45f1d" alt="Story">
</div>
<div class="absolute top-2 left-2 w-8 h-8 rounded-full border-2 border-indigo-500 overflow-hidden">
<img class="w-full h-full object-cover" src="https://randomuser.me/api/portraits/men/22.jpg" alt="User">
</div>
<p class="text-xs text-center mt-1">Michael</p>
</div>
<div class="flex-shrink-0 relative">
<div class="w-24 h-32 rounded-xl bg-gray-700 overflow-hidden">
<img class="w-full h-full object-cover" src="https://images.unsplash.com/photo-1519242220831-094109851b77" alt="Story">
</div>
<div class="absolute top-2 left-2 w-8 h-8 rounded-full border-2 border-indigo-500 overflow-hidden">
<img class="w-full h-full object-cover" src="https://randomuser.me/api/portraits/women/33.jpg" alt="User">
</div>
<p class="text-xs text-center mt-1">Emma</p>
</div>
<div class="flex-shrink-0 relative">
<div class="w-24 h-32 rounded-xl bg-gray-700 overflow-hidden">
<img class="w-full h-full object-cover" src="https://images.unsplash.com/photo-1531123897727-8f129e1688ce" alt="Story">
</div>
<div class="absolute top-2 left-2 w-8 h-8 rounded-full border-2 border-indigo-500 overflow-hidden">
<img class="w-full h-full object-cover" src="https://randomuser.me/api/portraits/men/45.jpg" alt="User">
</div>
<p class="text-xs text-center mt-1">David</p>
</div>
</div>
</div>
<!-- AI Assistant -->
<div class="bg-gray-800 rounded-xl p-4 mb-6 shadow-lg">
<div class="flex items-center mb-3">
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-blue-400 to-indigo-600 flex items-center justify-center mr-3">
<i class="fas fa-robot text-white"></i>
</div>
<div>
<h3 class="font-medium">VEGO AI Assistant</h3>
<p class="text-xs text-gray-400">Ready to help you create</p>
</div>
</div>
<div class="bg-gray-700 rounded-lg p-3 mb-3">
<p class="text-sm">Hi Erikleo! I can help you generate content, write captions, or even create AI avatars. What would you like to do today?</p>
</div>
<div class="grid grid-cols-2 gap-2">
<button class="text-xs px-3 py-2 rounded-lg bg-gray-700 text-gray-300 hover:bg-gray-600 flex items-center">
<i class="fas fa-pen-fancy mr-2"></i> Write caption
</button>
<button class="text-xs px-3 py-2 rounded-lg bg-gray-700 text-gray-300 hover:bg-gray-600 flex items-center">
<i class="fas fa-image mr-2"></i> Generate image
</button>
<button class="text-xs px-3 py-2 rounded-lg bg-gray-700 text-gray-300 hover:bg-gray-600 flex items-center">
<i class="fas fa-video mr-2"></i> Create video
</button>
<button class="text-xs px-3 py-2 rounded-lg bg-gray-700 text-gray-300 hover:bg-gray-600 flex items-center">
<i class="fas fa-user-robot mr-2"></i> Make avatar
</button>
</div>
</div>
<!-- Posts -->
<div class="bg-gray-800 rounded-xl p-4 mb-6 shadow-lg post-card transition duration-300">
<div class="flex items-start justify-between mb-3">
<div class="flex items-center space-x-3">
<div class="relative">
<img class="w-10 h-10 rounded-full" src="https://randomuser.me/api/portraits/women/44.jpg" alt="User profile">
<span class="absolute bottom-0 right-0 block h-3 w-3 rounded-full bg-green-500 ring-2 ring-gray-800"></span>
</div>
<div>
<p class="font-medium">Sarah Johnson</p>
<p class="text-xs text-gray-400">2h ago · <i class="fas fa-globe-americas"></i></p>
</div>
</div>
<button class="text-gray-400 hover:text-white">
<i class="fas fa-ellipsis-h"></i>
</button>
</div>
<p class="mb-3">Just created this amazing AI-generated artwork with VEGO's new creative tools! The AI understood exactly what I was imagining. #DigitalArt #AICreativity</p>
<div class="grid grid-cols-2 gap-2 mb-3">
<div class="rounded-lg overflow-hidden">
<img class="w-full h-48 object-cover" src="https://images.unsplash.com/photo-1637858868799-7f26a0640eb6" alt="AI Art">
</div>
<div class="rounded-lg overflow-hidden">
<img class="w-full h-48 object-cover" src="https://images.unsplash.com/photo-1639762681057-408e52192e55" alt="AI Art">
</div>
</div>
<div class="flex items-center justify-between text-gray-400 text-sm border-t border-gray-700 pt-3">
<div class="flex items-center space-x-4">
<button class="flex items-center hover:text-indigo-400">
<i class="fas fa-heart mr-1"></i> 243
</button>
<button class="flex items-center hover:text-indigo-400">
<i class="fas fa-comment mr-1"></i> 56
</button>
<button class="flex items-center hover:text-indigo-400">
<i class="fas fa-share mr-1"></i> 12
</button>
</div>
<button class="hover:text-indigo-400">
<i class="fas fa-bookmark"></i>
</button>
</div>
</div>
<div class="bg-gray-800 rounded-xl p-4 mb-6 shadow-lg post-card transition duration-300">
<div class="flex items-start justify-between mb-3">
<div class="flex items-center space-x-3">
<div class="relative">
<img class="w-10 h-10 rounded-full" src="https://randomuser.me/api/portraits/men/22.jpg" alt="User profile">
<span class="absolute bottom-0 right-0 block h-3 w-3 rounded-full bg-green-500 ring-2 ring-gray-800"></span>
</div>
<div>
<p class="font-medium">Michael Chen</p>
<p class="text-xs text-gray-400">4h ago · <i class="fas fa-users"></i></p>
</div>
</div>
<button class="text-gray-400 hover:text-white">
<i class="fas fa-ellipsis-h"></i>
</button>
</div>
<p class="mb-3">Check out this AI-generated short film I made entirely with VEGO's new video synthesis tools! The AI helped with scripting, voiceover, and even the animations. Mind blown! 🤯</p>
<div class="relative mb-3">
<div class="aspect-w-16 aspect-h-9 bg-gray-700 rounded-lg overflow-hidden">
<img class="w-full h-64 object-cover" src="https://images.unsplash.com/photo-1574717024453-354a7a89f6d3" alt="Video thumbnail">
<div class="absolute inset-0 flex items-center justify-center">
<button class="w-16 h-16 rounded-full bg-indigo-600 bg-opacity-80 flex items-center justify-center hover:bg-opacity-100">
<i class="fas fa-play text-white text-xl"></i>
</button>
</div>
</div>
</div>
<div class="flex items-center justify-between text-gray-400 text-sm border-t border-gray-700 pt-3">
<div class="flex items-center space-x-4">
<button class="flex items-center hover:text-indigo-400">
<i class="fas fa-heart mr-1"></i> 512
</button>
<button class="flex items-center hover:text-indigo-400">
<i class="fas fa-comment mr-1"></i> 87
</button>
<button class="flex items-center hover:text-indigo-400">
<i class="fas fa-share mr-1"></i> 43
</button>
</div>
<button class="hover:text-indigo-400">
<i class="fas fa-bookmark"></i>
</button>
<button class="text-xs px-2 py-1 rounded bg-gray-700 hover:bg-gray-600 flex items-center">
<i class="fas fa-robot mr-1"></i> Try this AI
</button>
</div>
</div>
<div class="bg-gray-800 rounded-xl p-4 mb-6 shadow-lg post-card transition duration-300">
<div class="flex items-start justify-between mb-3">
<div class="flex items-center space-x-3">
<div class="relative">
<img class="w-10 h-10 rounded-full" src="https://randomuser.me/api/portraits/women/33.jpg" alt="User profile">
<span class="absolute bottom-0 right-0 block h-3 w-3 rounded-full bg-yellow-500 ring-2 ring-gray-800"></span>
</div>
<div>
<p class="font-medium">Emma Wilson <i class="fas fa-check-circle text-blue-400 ml-1"></i></p>
<p class="text-xs text-gray-400">6h ago · <i class="fas fa-globe-americas"></i></p>
</div>
</div>
<button class="text-gray-400 hover:text-white">
<i class="fas fa-ellipsis-h"></i>
</button>
</div>
<p class="mb-3">Just had the most fascinating conversation with my VEGO AI companion about the future of creative expression. It suggested some incredible ideas for my next project that I would have never thought of!</p>
<div class="bg-gray-700 rounded-lg p-3 mb-3">
<div class="flex items-start mb-2">
<div class="w-8 h-8 rounded-full bg-blue-500 flex items-center justify-center mr-2 flex-shrink-0">
<i class="fas fa-robot text-white text-sm"></i>
</div>
<div class="bg-gray-800 rounded-lg p-2">
<p class="text-sm">Based on your interests in surrealism and digital art, have you considered creating a series where everyday objects transform into abstract landscapes? I can generate some concept sketches if you'd like!</p>
</div>
</div>
<div class="flex items-start">
<div class="w-8 h-8 rounded-full bg-blue-500 flex items-center justify-center mr-2 flex-shrink-0">
<i class="fas fa-robot text-white text-sm"></i>
</div>
<div class="bg-gray-800 rounded-lg p-2">
<p class="text-sm">Also, your engagement metrics show your audience responds well to interactive content. Maybe we could create a piece where viewers can influence the artwork's evolution in real-time?</p>
</div>
</div>
</div>
<div class="flex items-center justify-between text-gray-400 text-sm border-t border-gray-700 pt-3">
<div class="flex items-center space-x-4">
<button class="flex items-center hover:text-indigo-400">
<i class="fas fa-heart mr-1"></i> 189
</button>
<button class="flex items-center hover:text-indigo-400">
<i class="fas fa-comment mr-1"></i> 34
</button>
<button class="flex items-center hover:text-indigo-400">
<i class="fas fa-share mr-1"></i> 8
</button>
</div>
<button class="hover:text-indigo-400">
<i class="fas fa-bookmark"></i>
</button>
<button class="text-xs px-2 py-1 rounded bg-gradient-to-r from-blue-500 to-indigo-600 text-white hover:from-blue-600 hover:to-indigo-700 flex items-center">
<i class="fas fa-comment-alt mr-1"></i> Ask AI
</button>
</div>
</div>
</div>
</div>
<!-- Right sidebar -->
<div class="hidden lg:block lg:flex-shrink-0 lg:w-80 lg:overflow-y-auto border-l border-gray-800">
<div class="p-4">
<!-- Trending now -->
<div class="bg-gray-800 rounded-xl p-4 mb-6 shadow-lg">
<h3 class="font-medium mb-3">Trending Now</h3>
<div class="space-y-3">
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-pink-500 to-purple-600 flex items-center justify-center mr-3 flex-shrink-0">
<i class="fas fa-hashtag text-white"></i>
</div>
<div>
<p class="font-medium text-sm">#AICreativity</p>
<p class="text-xs text-gray-400">12.5K posts</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-green-500 to-blue-600 flex items-center justify-center mr-3 flex-shrink-0">
<i class="fas fa-hashtag text-white"></i>
</div>
<div>
<p class="font-medium text-sm">#VEGOArt</p>
<p class="text-xs text-gray-400">8.2K posts</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-yellow-500 to-orange-600 flex items-center justify-center mr-3 flex-shrink-0">
<i class="fas fa-hashtag text-white"></i>
</div>
<div>
<p class="font-medium text-sm">#DigitalTransformation</p>
<p class="text-xs text-gray-400">5.7K posts</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-red-500 to-pink-600 flex items-center justify-center mr-3 flex-shrink-0">
<i class="fas fa-hashtag text-white"></i>
</div>
<div>
<p class="font-medium text-sm">#FutureOfSocial</p>
<p class="text-xs text-gray-400">4.9K posts</p>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-purple-500 to-indigo-600 flex items-center justify-center mr-3 flex-shrink-0">
<i class="fas fa-hashtag text-white"></i>
</div>
<div>
<p class="font-medium text-sm">#Shqip</p>
<p class="text-xs text-gray-400">3.1K posts</p>
</div>
</div>
</div>
</div>
<!-- Suggested accounts -->
<div class="bg-gray-800 rounded-xl p-4 mb-6 shadow-lg">
<div class="flex justify-between items-center mb-3">
<h3 class="font-medium">Suggested Accounts</h3>
<button class="text-sm text-indigo-400 hover:text-indigo-300">See All</button>
</div>
<div class="space-y-4">
<div class="flex items-center">
<div class="relative mr-3">
<img class="w-10 h-10 rounded-full" src="https://randomuser.me/api/portraits/women/28.jpg" alt="User profile">
<span class="absolute bottom-0 right-0 block h-3 w-3 rounded-full bg-green-500 ring-2 ring-gray-800"></span>
</div>
<div class="flex-1">
<p class="font-medium text-sm">Lisa Park</p>
<p class="text-xs text-gray-400">AI Artist</p>
</div>
<button class="text-xs px-3 py-1 rounded-full bg-gray-700 hover:bg-gray-600">Follow</button>
</div>
<div class="flex items-center">
<div class="relative mr-3">
<img class="w-10 h-10 rounded-full" src="https://randomuser.me/api/portraits/men/41.jpg" alt="User profile">
<span class="absolute bottom-0 right-0 block h-3 w-3 rounded-full bg-green-500 ring-2 ring-gray-800"></span>
</div>
<div class="flex-1">
<p class="font-medium text-sm">James Rodriguez <i class="fas fa-check-circle text-blue-400 ml-1"></i></p>
<p class="text-xs text-gray-400">Tech Influencer</p>
</div>
<button class="text-xs px-3 py-1 rounded-full bg-gray-700 hover:bg-gray-600">Follow</button>
</div>
<div class="flex items-center">
<div class="relative mr-3">
<img class="w-10 h-10 rounded-full" src="https://randomuser.me/api/portraits/women/19.jpg" alt="User profile">
<span class="absolute bottom-0 right-0 block h-3 w-3 rounded-full bg-yellow-500 ring-2 ring-gray-800"></span>
</div>
<div class="flex-1">
<p class="font-medium text-sm">Sophia Chen</p>
<p class="text-xs text-gray-400">Digital Creator</p>
</div>
<button class="text-xs px-3 py-1 rounded-full bg-gray-700 hover:bg-gray-600">Follow</button>
</div>
<div class="flex items-center">
<div class="relative mr-3">
<img class="w-10 h-10 rounded-full" src="https://randomuser.me/api/portraits/men/36.jpg" alt="User profile">
<span class="absolute bottom-0 right-0 block h-3 w-3 rounded-full bg-green-500 ring-2 ring-gray-800"></span>
</div>
<div class="flex-1">
<p class="font-medium text-sm">David Kim</p>
<p class="text-xs text-gray-400">AI Researcher</p>
</div>
<button class="text-xs px-3 py-1 rounded-full bg-gray-700 hover:bg-gray-600">Follow</button>
</div>
</div>
</div>
<!-- AI tools spotlight -->
<div class="bg-gray-800 rounded-xl p-4 shadow-lg">
<h3 class="font-medium mb-3">AI Tools Spotlight</h3>
<div class="space-y-3">
<div class="bg-gradient-to-br from-blue-900 to-indigo-900 rounded-lg p-3">
<div class="flex items-center mb-2">
<div class="w-8 h-8 rounded-full bg-blue-500 flex items-center justify-center mr-2">
<i class="fas fa-image text-white text-sm"></i>
</div>
<p class="font-medium text-sm">Art Generator Pro</p>
</div>
<p class="text-xs text-gray-300 mb-2">Create stunning AI artwork with just a text prompt. Try our new styles!</p>
<button class="w-full text-xs px-3 py-1 rounded-full bg-blue-600 hover:bg-blue-500">Try Now</button>
</div>
<div class="bg-gradient-to-br from-purple-900 to-indigo-900 rounded-lg p-3">
<div class="flex items-center mb-2">
<div class="w-8 h-8 rounded-full bg-purple-500 flex items-center justify-center mr-2">
<i class="fas fa-video text-white text-sm"></i>
</div>
<p class="font-medium text-sm">Video Synthesis</p>
</div>
<p class="text-xs text-gray-300 mb-2">Turn your ideas into professional videos with AI assistance.</p>
<button class="w-full text-xs px-3 py-1 rounded-full bg-purple-600 hover:bg-purple-500">Try Now</button>
</div>
<div class="bg-gradient-to-br from-pink-900 to-purple-900 rounded-lg p-3">
<div class="flex items-center mb-2">
<div class="w-8 h-8 rounded-full bg-pink-500 flex items-center justify-center mr-2">
<i class="fas fa-user-robot text-white text-sm"></i>
</div>
<p class="font-medium text-sm">Avatar Creator</p>
</div>
<p class="text-xs text-gray-300 mb-2">Design your perfect digital persona with our advanced tools.</p>
<button class="w-full text-xs px-3 py-1 rounded-full bg-pink-600 hover:bg-pink-500">Try Now</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Mobile bottom navigation -->
<div class="md:hidden fixed bottom-0 left-0 right-0 bg-gray-900 border-t border-gray-800">
<div class="flex justify-around items-center h-16">
<a href="#" class="flex flex-col items-center justify-center text-indigo-400">
<i class="fas fa-home text-lg"></i>
<span class="text-xs mt-1">Home</span>
</a>
<a href="#" class="flex flex-col items-center justify-center text-gray-400 hover:text-white">
<i class="fas fa-compass text-lg"></i>
<span class="text-xs mt-1">Explore</span>
</a>
<a href="#" class="flex flex-col items-center justify-center text-gray-400 hover:text-white">
<i class="fas fa-plus-circle text-2xl text-indigo-500 glow"></i>
</a>
<a href="#" class="flex flex-col items-center justify-center text-gray-400 hover:text-white">
<i class="fas fa-bell text-lg"></i>
<span class="text-xs mt-1">Alerts</span>
</a>
<a href="#" class="flex flex-col items-center justify-center text-gray-400 hover:text-white">
<i class="fas fa-user text-lg"></i>
<span class="text-xs mt-1">Profile</span>
</a>
</div>
</div>
<!-- AI Assistant floating button -->
<div class="fixed bottom-20 right-4 md:bottom-6 md:right-6">
<button class="w-14 h-14 rounded-full bg-gradient-to-br from-blue-500 to-indigo-600 text-white flex items-center justify-center shadow-lg ai-assistant-bubble hover:from-blue-600 hover:to-indigo-700">
<i class="fas fa-robot text-xl"></i>
</button>
</div>
<script>
// Typewriter effect for demo purposes
document.addEventListener('DOMContentLoaded', function() {
const aiMessage = document.createElement('div');
aiMessage.className = 'typewriter text-sm font-medium mb-2';
aiMessage.textContent = 'Welcome to VEGO - Where your content thinks with you';
const aiBubble = document.querySelector('.ai-assistant-bubble');
aiBubble.addEventListener('click', function() {
const assistantPanel = document.createElement('div');
assistantPanel.className = 'fixed bottom-24 right-4 w-72 bg-gray-800 rounded-xl shadow-xl border border-gray-700 z-50 p-4';
assistantPanel.innerHTML = `
<div class="flex justify-between items-center mb-3">
<div class="flex items-center">
<div class="w-8 h-8 rounded-full bg-blue-500 flex items-center justify-center mr-2">
<i class="fas fa-robot text-white"></i>
</div>
<h3 class="font-medium">VEGO AI</h3>
</div>
<button class="text-gray-400 hover:text-white close-ai">
<i class="fas fa-times"></i>
</button>
</div>
<div class="bg-gray-700 rounded-lg p-3 mb-3">
<p class="text-sm">Hi there! I'm your VEGO AI assistant. How can I help you create today?</p>
</div>
<div class="space-y-2">
<button class="w-full text-left px-3 py-2 rounded-lg bg-gray-700 hover:bg-gray-600 text-sm flex items-center">
<i class="fas fa-pen-fancy mr-2"></i> Help me write a post
</button>
<button class="w-full text-left px-3 py-2 rounded-lg bg-gray-700 hover:bg-gray-600 text-sm flex items-center">
<i class="fas fa-image mr-2"></i> Generate an image
</button>
<button class="w-full text-left px-3 py-2 rounded-lg bg-gray-700 hover:bg-gray-600 text-sm flex items-center">
<i class="fas fa-video mr-2"></i> Create a short video
</button>
<button class="w-full text-left px-3 py-2 rounded-lg bg-gray-700 hover:bg-gray-600 text-sm flex items-center">
<i class="fas fa-chart-line mr-2"></i> Analyze my engagement
</button>
</div>
`;
document.body.appendChild(assistantPanel);
// Close button functionality
const closeButton = assistantPanel.querySelector('.close-ai');
closeButton.addEventListener('click', function() {
assistantPanel.remove();
});
// Close when clicking outside
document.addEventListener('click', function(event) {
if (!assistantPanel.contains(event.target) && event.target !== aiBubble) {
assistantPanel.remove();
}
});
});
// Language switcher functionality
const languageOptions = ['English', 'Shqip', 'Español', 'Français'];
let currentLanguage = 0;
const languageButton = document.createElement('button');
languageButton.className = 'fixed top-4 right-4 text-xs px-2 py-1 rounded-full bg-gray-800 hover:bg-gray-700 z-50';
languageButton.textContent = languageOptions[currentLanguage];
languageButton.addEventListener('click', function() {
currentLanguage = (currentLanguage + 1) % languageOptions.length;
languageButton.textContent = languageOptions[currentLanguage];
// Show language change notification
const notification = document.createElement('div');
notification.className = 'fixed top-16 right-4 bg-gray-800 text-white text-sm px-3 py-2 rounded-lg shadow-lg z-50';
notification.textContent = `Language set to ${languageOptions[currentLanguage]}`;
document.body.appendChild(notification);
setTimeout(() => {
notification.remove();
}, 2000);
});
document.body.appendChild(languageButton);
});
</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/vego-app-v2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |