Spaces:
Running
Running
File size: 34,032 Bytes
3d6e8a7 |
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 |
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>نظام إدارة المتاجر الإلكترونية</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=Tajawal:wght@400;500;700;900&display=swap');
body {
font-family: 'Tajawal', sans-serif;
background-color: #f8fafc;
}
.gradient-bg {
background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}
.sidebar-item {
transition: all 0.3s ease;
}
.sidebar-item:hover {
background-color: rgba(255, 255, 255, 0.15);
transform: translateX(-5px);
}
.stat-card {
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.stat-card:hover {
transform: translateY(-8px);
box-shadow: 0 14px 28px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.08);
}
.progress-bar {
transition: width 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fadein {
animation: fadeIn 0.6s ease-out forwards;
}
.quick-action-btn {
transition: all 0.3s ease;
}
.quick-action-btn:hover {
transform: scale(1.05);
box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
input:focus {
outline: none;
border-color: #4f46e5;
box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<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 text-white">
<div class="flex items-center justify-center h-16 px-4 border-b border-indigo-400">
<div class="flex items-center">
<i class="fas fa-store-alt text-2xl mr-2"></i>
<span class="text-xl font-bold">إدارة المتاجر</span>
</div>
</div>
<div class="flex flex-col flex-grow pt-5 overflow-y-auto">
<div class="px-4 space-y-1">
<a href="#" class="sidebar-item flex items-center px-4 py-3 rounded-lg text-white bg-indigo-700">
<i class="fas fa-tachometer-alt ml-3"></i>
<span>لوحة التحكم</span>
</a>
<a href="#" class="sidebar-item flex items-center px-4 py-3 rounded-lg text-white hover:bg-indigo-600">
<i class="fas fa-store ml-3"></i>
<span>المتاجر</span>
</a>
<a href="#" class="sidebar-item flex items-center px-4 py-3 rounded-lg text-white hover:bg-indigo-600">
<i class="fas fa-robot ml-3"></i>
<span>المساعد الذكي</span>
</a>
<a href="#" class="sidebar-item flex items-center px-4 py-3 rounded-lg text-white hover:bg-indigo-600">
<i class="fas fa-palette ml-3"></i>
<span>التصاميم</span>
</a>
<a href="#" class="sidebar-item flex items-center px-4 py-3 rounded-lg text-white hover:bg-indigo-600">
<i class="fas fa-key ml-3"></i>
<span>API Tokens</span>
</a>
<a href="#" class="sidebar-item flex items-center px-4 py-3 rounded-lg text-white hover:bg-indigo-600">
<i class="fas fa-cog ml-3"></i>
<span>الإعدادات</span>
</a>
</div>
<div class="mt-auto px-4 py-4">
<div class="bg-indigo-700 rounded-lg p-4">
<div class="flex items-center">
<div class="flex-shrink-0">
<i class="fas fa-info-circle text-xl"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">هل تحتاج مساعدة؟</p>
<a href="#" class="text-xs underline">تواصل مع الدعم</a>
</div>
</div>
</div>
</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 bg-white border-b border-gray-200 px-4">
<div class="flex items-center md:hidden">
<button class="text-gray-500 focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
<div class="flex items-center space-x-4 space-x-reverse">
<div class="relative">
<button class="text-gray-500 focus:outline-none">
<i class="fas fa-bell text-xl"></i>
</button>
<span class="absolute top-0 right-0 h-2 w-2 rounded-full bg-red-500"></span>
</div>
<div class="relative">
<button class="flex items-center focus:outline-none">
<img class="h-8 w-8 rounded-full" src="https://ui-avatars.com/api/?name=مدير+النظام&background=7c3aed&color=fff" alt="User">
<span class="mr-2 text-sm font-medium hidden md:inline">مدير النظام</span>
</button>
</div>
</div>
</div>
<!-- Page content -->
<div class="flex-1 overflow-auto p-4 bg-gray-50">
<div class="mb-6">
<h1 class="text-2xl font-bold text-gray-800">مرحباً بك في نظام إدارة المتاجر</h1>
<p class="text-gray-600">إدارة كاملة لجميع متاجرك من مكان واحد</p>
</div>
<!-- Stats cards -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-6 animate-fadein" style="animation-delay: 0.2s">
<div class="stat-card bg-white rounded-lg shadow p-6 transition-all duration-300">
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-gray-500">المتاجر النشطة</p>
<p class="text-2xl font-bold mt-1">5</p>
</div>
<div class="p-3 rounded-full bg-indigo-100 text-indigo-600">
<i class="fas fa-store text-xl"></i>
</div>
</div>
<div class="mt-4">
<div class="flex items-center justify-between text-sm">
<span class="text-gray-500">الحالة</span>
<span class="font-medium text-green-500">جميعها تعمل</span>
</div>
</div>
</div>
<div class="stat-card bg-white rounded-lg shadow p-6 transition-all duration-300">
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-gray-500">المبيعات اليوم</p>
<p class="text-2xl font-bold mt-1">$4,567</p>
</div>
<div class="p-3 rounded-full bg-green-100 text-green-600">
<i class="fas fa-dollar-sign text-xl"></i>
</div>
</div>
<div class="mt-4">
<div class="flex items-center justify-between text-sm">
<span class="text-gray-500">مقارنة بالأمس</span>
<span class="font-medium text-green-500">+12%</span>
</div>
</div>
</div>
<div class="stat-card bg-white rounded-lg shadow p-6 transition-all duration-300">
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-gray-500">الطلبات الجديدة</p>
<p class="text-2xl font-bold mt-1">89</p>
</div>
<div class="p-3 rounded-full bg-blue-100 text-blue-600">
<i class="fas fa-shopping-cart text-xl"></i>
</div>
</div>
<div class="mt-4">
<div class="flex items-center justify-between text-sm">
<span class="text-gray-500">في انتظار المعالجة</span>
<span class="font-medium text-orange-500">15</span>
</div>
</div>
</div>
<div class="stat-card bg-white rounded-lg shadow p-6 transition-all duration-300">
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-gray-500">الزوار اليوم</p>
<p class="text-2xl font-bold mt-1">1,234</p>
</div>
<div class="p-3 rounded-full bg-purple-100 text-purple-600">
<i class="fas fa-users text-xl"></i>
</div>
</div>
<div class="mt-4">
<div class="flex items-center justify-between text-sm">
<span class="text-gray-500">معدل التحويل</span>
<span class="font-medium text-green-500">7.2%</span>
</div>
</div>
</div>
</div>
<!-- Quick actions -->
<div class="mb-6">
<h2 class="text-lg font-medium text-gray-800 mb-4">إجراءات سريعة</h2>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<button class="flex items-center justify-center space-x-2 space-x-reverse bg-white rounded-lg shadow p-4 hover:bg-gray-50 transition-colors">
<i class="fas fa-plus text-indigo-600"></i>
<span>إضافة متجر</span>
</button>
<button class="flex items-center justify-center space-x-2 space-x-reverse bg-white rounded-lg shadow p-4 hover:bg-gray-50 transition-colors">
<i class="fas fa-palette text-indigo-600"></i>
<span>تصميم جديد</span>
</button>
<button class="flex items-center justify-center space-x-2 space-x-reverse bg-white rounded-lg shadow p-4 hover:bg-gray-50 transition-colors">
<i class="fas fa-sync-alt text-indigo-600"></i>
<span>فحص الكل</span>
</button>
<button class="flex items-center justify-center space-x-2 space-x-reverse bg-white rounded-lg shadow p-4 hover:bg-gray-50 transition-colors">
<i class="fas fa-database text-indigo-600"></i>
<span>نسخ احتياطي</span>
</button>
</div>
</div>
<!-- Recent activity and server status -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6 animate-fadein" style="animation-delay: 0.6s">
<!-- Recent activity -->
<div class="bg-white rounded-lg shadow overflow-hidden">
<div class="px-6 py-4 border-b border-gray-200">
<h2 class="text-lg font-medium text-gray-800">النشاط الأخير</h2>
</div>
<div class="divide-y divide-gray-200">
<div class="px-6 py-4">
<div class="flex items-center">
<div class="flex-shrink-0 bg-green-100 rounded-full p-2 text-green-600">
<i class="fas fa-check"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">تم تحديث المتجر 1</p>
<p class="text-xs text-gray-500">منذ 15 دقيقة</p>
</div>
</div>
</div>
<div class="px-6 py-4">
<div class="flex items-center">
<div class="flex-shrink-0 bg-blue-100 rounded-full p-2 text-blue-600">
<i class="fas fa-palette"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">تصميم جديد جاهز</p>
<p class="text-xs text-gray-500">منذ ساعة واحدة</p>
</div>
</div>
</div>
<div class="px-6 py-4">
<div class="flex items-center">
<div class="flex-shrink-0 bg-purple-100 rounded-full p-2 text-purple-600">
<i class="fas fa-comment-dots"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">5 رسائل تم الرد عليها</p>
<p class="text-xs text-gray-500">منذ 3 ساعات</p>
</div>
</div>
</div>
<div class="px-6 py-4">
<div class="flex items-center">
<div class="flex-shrink-0 bg-orange-100 rounded-full p-2 text-orange-600">
<i class="fas fa-exclamation-triangle"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">تحذير: متجر 3 بطيء</p>
<p class="text-xs text-gray-500">منذ 5 ساعات</p>
</div>
</div>
</div>
</div>
<div class="px-6 py-3 bg-gray-50 text-right">
<a href="#" class="text-sm font-medium text-indigo-600 hover:text-indigo-500">عرض الكل</a>
</div>
</div>
<!-- Server status -->
<div class="bg-white rounded-lg shadow overflow-hidden">
<div class="px-6 py-4 border-b border-gray-200">
<h2 class="text-lg font-medium text-gray-800">حالة السيرفرات</h2>
</div>
<div class="divide-y divide-gray-200">
<div class="px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="flex-shrink-0 bg-green-100 rounded-full p-2 text-green-600">
<i class="fas fa-server"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">Proxmox</p>
<p class="text-xs text-gray-500">قاعدة البيانات</p>
</div>
</div>
<div class="flex items-center">
<span class="text-sm font-medium text-green-500">Online</span>
<div class="w-16 bg-gray-200 rounded-full h-2 ml-2">
<div class="bg-green-500 h-2 rounded-full progress-bar" style="width: 75%"></div>
</div>
</div>
</div>
</div>
<div class="px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="flex-shrink-0 bg-green-100 rounded-full p-2 text-green-600">
<i class="fas fa-server"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">Contabo</p>
<p class="text-xs text-gray-500">واجهة الويب</p>
</div>
</div>
<div class="flex items-center">
<span class="text-sm font-medium text-green-500">Online</span>
<div class="w-16 bg-gray-200 rounded-full h-2 ml-2">
<div class="bg-green-500 h-2 rounded-full progress-bar" style="width: 45%"></div>
</div>
</div>
</div>
</div>
<div class="px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="flex-shrink-0 bg-green-100 rounded-full p-2 text-green-600">
<i class="fas fa-server"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">Lenovo</p>
<p class="text-xs text-gray-500">المعالجة الذكية</p>
</div>
</div>
<div class="flex items-center">
<span class="text-sm font-medium text-green-500">Online</span>
<div class="w-16 bg-gray-200 rounded-full h-2 ml-2">
<div class="bg-green-500 h-2 rounded-full progress-bar" style="width: 68%"></div>
</div>
</div>
</div>
</div>
<div class="px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="flex-shrink-0 bg-yellow-100 rounded-full p-2 text-yellow-600">
<i class="fas fa-server"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">Acer</p>
<p class="text-xs text-gray-500">النسخ الاحتياطي</p>
</div>
</div>
<div class="flex items-center">
<span class="text-sm font-medium text-yellow-500">تحذير</span>
<div class="w-16 bg-gray-200 rounded-full h-2 ml-2">
<div class="bg-yellow-500 h-2 rounded-full progress-bar" style="width: 92%"></div>
</div>
</div>
</div>
</div>
</div>
<div class="px-6 py-3 bg-gray-50 text-right">
<a href="#" class="text-sm font-medium text-indigo-600 hover:text-indigo-500">تفاصيل الأداء</a>
</div>
</div>
</div>
<!-- API Tokens Management -->
<div class="mt-6 bg-white rounded-lg shadow overflow-hidden">
<div class="px-6 py-4 border-b border-gray-200">
<h2 class="text-lg font-medium text-gray-800">إدارة API Tokens</h2>
</div>
<div class="p-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h3 class="text-md font-medium mb-4">Canva API</h3>
<div class="flex items-center space-x-2">
<input type="text" class="flex-1 border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-indigo-500" placeholder="أدخل Canva API Key">
<button class="bg-indigo-600 text-white px-4 py-2 rounded-lg hover:bg-indigo-700 transition-colors">
حفظ
</button>
</div>
<p class="text-xs text-gray-500 mt-2">استخدم هذا الـ API لربط تصميمات Canva بمتجرك</p>
</div>
<div>
<h3 class="text-md font-medium mb-4">إضافة متجر جديد</h3>
<div class="flex items-center space-x-2">
<input type="text" class="flex-1 border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-indigo-500" placeholder="اسم المتجر">
<button class="bg-green-600 text-white px-4 py-2 rounded-lg hover:bg-green-700 transition-colors">
إضافة
</button>
</div>
<p class="text-xs text-gray-500 mt-2">أدخل اسم المتجر واضغط إضافة لإنشاء متجر جديد</p>
</div>
</div>
</div>
</div>
<!-- Store performance -->
<div class="mt-6 bg-white rounded-lg shadow overflow-hidden">
<div class="px-6 py-4 border-b border-gray-200">
<h2 class="text-lg font-medium text-gray-800">أداء المتاجر</h2>
</div>
<div class="divide-y divide-gray-200">
<div class="px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="flex-shrink-0 bg-indigo-100 rounded-full p-2 text-indigo-600">
<i class="fas fa-store"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">متجر 1 - أزياء</p>
<p class="text-xs text-gray-500">store1.com</p>
</div>
</div>
<div class="flex items-center">
<span class="text-sm font-medium text-green-500">45ms</span>
<div class="w-24 bg-gray-200 rounded-full h-2 ml-2">
<div class="bg-green-500 h-2 rounded-full progress-bar" style="width: 25%"></div>
</div>
</div>
</div>
</div>
<div class="px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="flex-shrink-0 bg-indigo-100 rounded-full p-2 text-indigo-600">
<i class="fas fa-store"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">متجر 2 - إلكترونيات</p>
<p class="text-xs text-gray-500">store2.com</p>
</div>
</div>
<div class="flex items-center">
<span class="text-sm font-medium text-green-500">67ms</span>
<div class="w-24 bg-gray-200 rounded-full h-2 ml-2">
<div class="bg-green-500 h-2 rounded-full progress-bar" style="width: 35%"></div>
</div>
</div>
</div>
</div>
<div class="px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="flex-shrink-0 bg-indigo-100 rounded-full p-2 text-indigo-600">
<i class="fas fa-store"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">متجر 3 - مأكولات</p>
<p class="text-xs text-gray-500">store3.com</p>
</div>
</div>
<div class="flex items-center">
<span class="text-sm font-medium text-orange-500">234ms</span>
<div class="w-24 bg-gray-200 rounded-full h-2 ml-2">
<div class="bg-orange-500 h-2 rounded-full progress-bar" style="width: 75%"></div>
</div>
</div>
</div>
</div>
<div class="px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="flex-shrink-0 bg-indigo-100 rounded-full p-2 text-indigo-600">
<i class="fas fa-store"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">متجر 4 - أثاث</p>
<p class="text-xs text-gray-500">store4.com</p>
</div>
</div>
<div class="flex items-center">
<span class="text-sm font-medium text-green-500">89ms</span>
<div class="w-24 bg-gray-200 rounded-full h-2 ml-2">
<div class="bg-green-500 h-2 rounded-full progress-bar" style="width: 45%"></div>
</div>
</div>
</div>
</div>
<div class="px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<div class="flex-shrink-0 bg-indigo-100 rounded-full p-2 text-indigo-600">
<i class="fas fa-store"></i>
</div>
<div class="mr-3">
<p class="text-sm font-medium">متجر 5 - رياضة</p>
<p class="text-xs text-gray-500">store5.com</p>
</div>
</div>
<div class="flex items-center">
<span class="text-sm font-medium text-green-500">56ms</span>
<div class="w-24 bg-gray-200 rounded-full h-2 ml-2">
<div class="bg-green-500 h-2 rounded-full progress-bar" style="width: 30%"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
// Simple animation for progress bars on page load
document.addEventListener('DOMContentLoaded', function() {
const progressBars = document.querySelectorAll('.progress-bar');
progressBars.forEach(bar => {
const width = bar.style.width;
bar.style.width = '0';
setTimeout(() => {
bar.style.width = width;
}, 100);
});
// Add hover effects to stat cards
const statCards = document.querySelectorAll('.stat-card');
statCards.forEach(card => {
card.addEventListener('mouseenter', () => {
card.classList.add('shadow-lg');
});
card.addEventListener('mouseleave', () => {
card.classList.remove('shadow-lg');
});
});
});
</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=fsalmansour/dash" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |