File size: 33,342 Bytes
17d47e7 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OmniPost - All-in-One Social Media Automation</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: {
primary: '#6366f1',
secondary: '#8b5cf6',
dark: '#1e293b',
}
}
}
}
</script>
<style>
.platform-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.content-preview {
min-height: 150px;
border-left: 4px solid #6366f1;
}
.hashtag-chip {
transition: all 0.2s;
}
.hashtag-chip:hover {
background-color: #e0e7ff;
color: #6366f1;
}
[data-tooltip] {
position: relative;
}
[data-tooltip]::after {
content: attr(data-tooltip);
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
background: #1e293b;
color: white;
padding: 4px 8px;
border-radius: 4px;
font-size: 12px;
white-space: nowrap;
opacity: 0;
transition: opacity 0.2s;
pointer-events: none;
}
[data-tooltip]:hover::after {
opacity: 1;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<div class="min-h-screen flex flex-col">
<!-- Header -->
<header class="bg-white shadow-sm py-4">
<div class="container mx-auto px-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-rocket text-2xl text-primary"></i>
<h1 class="text-2xl font-bold text-dark">OmniPost</h1>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#" class="text-primary font-medium">Dashboard</a>
<a href="#" class="hover:text-primary transition">Content</a>
<a href="#" class="hover:text-primary transition">Schedule</a>
<a href="#" class="hover:text-primary transition">Analytics</a>
<a href="#" class="hover:text-primary transition">Settings</a>
</nav>
<div class="flex items-center space-x-4">
<button class="p-2 rounded-full hover:bg-gray-100">
<i class="fas fa-bell text-gray-600"></i>
</button>
<div class="w-8 h-8 rounded-full bg-primary flex items-center justify-center text-white font-medium">
U
</div>
</div>
</div>
</header>
<!-- Main Content -->
<main class="flex-grow container mx-auto px-4 py-8">
<div class="flex flex-col lg:flex-row gap-8">
<!-- Left Sidebar -->
<aside class="lg:w-1/4 space-y-6">
<div class="bg-white p-6 rounded-xl shadow-sm">
<h2 class="text-lg font-bold mb-4">Weekly Setup</h2>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium mb-1" for="topic">Main Topic</label>
<input type="text" id="topic" placeholder="Enter your marketing topic..."
class="w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
</div>
<div>
<label class="block text-sm font-medium mb-1" for="tone">Content Tone</label>
<select id="tone" class="w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
<option>Professional</option>
<option>Casual</option>
<option>Funny</option>
<option>Inspirational</option>
<option>Educational</option>
</select>
</div>
<div>
<label class="block text-sm font-medium mb-1">Post Frequency</label>
<div class="flex items-center space-x-2">
<input type="range" min="1" max="21" value="7" class="w-full">
<span class="text-sm font-medium">7</span>
</div>
<p class="text-xs text-gray-500 mt-1">Posts per week</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm">
<h2 class="text-lg font-bold mb-4">Connected Platforms</h2>
<div class="space-y-3">
<div class="flex items-center justify-between p-3 rounded-lg bg-gray-50">
<div class="flex items-center space-x-3">
<i class="fab fa-twitter text-blue-400 text-xl"></i>
<span>Twitter (X)</span>
</div>
<label class="relative inline-flex items-center cursor-pointer">
<input type="checkbox" checked class="sr-only peer">
<div class="w-11 h-6 bg-gray-200 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-primary"></div>
</label>
</div>
<div class="flex items-center justify-between p-3 rounded-lg bg-gray-50">
<div class="flex items-center space-x-3">
<i class="fab fa-linkedin text-blue-600 text-xl"></i>
<span>LinkedIn</span>
</div>
<label class="relative inline-flex items-center cursor-pointer">
<input type="checkbox" checked class="sr-only peer">
<div class="w-11 h-6 bg-gray-200 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-primary"></div>
</label>
</div>
<div class="flex items-center justify-between p-3 rounded-lg bg-gray-50">
<div class="flex items-center space-x-3">
<i class="fab fa-instagram text-pink-600 text-xl"></i>
<span>Instagram</span>
</div>
<label class="relative inline-flex items-center cursor-pointer">
<input type="checkbox" class="sr-only peer">
<div class="w-11 h-6 bg-gray-200 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-primary"></div>
</label>
</div>
<div class="flex items-center justify-between p-3 rounded-lg bg-gray-50">
<div class="flex items-center space-x-3">
<i class="fab fa-facebook text-blue-700 text-xl"></i>
<span>Facebook</span>
</div>
<label class="relative inline-flex items-center cursor-pointer">
<input type="checkbox" class="sr-only peer">
<div class="w-11 h-6 bg-gray-200 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-primary"></div>
</label>
</div>
<div class="flex items-center justify-between p-3 rounded-lg bg-gray-50">
<div class="flex items-center space-x-3">
<i class="fab fa-threads text-black text-xl"></i>
<span>Threads</span>
</div>
<label class="relative inline-flex items-center cursor-pointer">
<input type="checkbox" checked class="sr-only peer">
<div class="w-11 h-6 bg-gray-200 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-primary"></div>
</label>
</div>
</div>
<button class="w-full mt-4 py-2 bg-primary text-white rounded-lg hover:bg-primary/90 transition">
Connect More Platforms
</button>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm">
<h2 class="text-lg font-bold mb-4">Optimal Posting Times</h2>
<div class="space-y-4">
<div class="flex items-center justify-between">
<span>Twitter (X)</span>
<span class="text-sm font-medium">9:00 AM</span>
</div>
<div class="flex items-center justify-between">
<span>LinkedIn</span>
<span class="text-sm font-medium">10:30 AM</span>
</div>
<div class="flex items-center justify-between">
<span>Instagram</span>
<span class="text-sm font-medium">12:00 PM</span>
</div>
<div class="flex items-center justify-between">
<span>Facebook</span>
<span class="text-sm font-medium">2:00 PM</span>
</div>
<div class="flex items-center justify-between">
<span>Threads</span>
<span class="text-sm font-medium">4:30 PM</span>
</div>
</div>
<button class="w-full mt-4 py-2 border border-primary text-primary rounded-lg hover:bg-primary/10 transition">
Customize Times
</button>
</div>
</aside>
<!-- Main Content Area -->
<div class="lg:w-3/4 space-y-6">
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold">Content Generator</h2>
<div class="flex space-x-3">
<button class="px-4 py-2 border rounded-lg hover:bg-gray-50 transition">
Generate Sample
</button>
<button class="px-4 py-2 bg-primary text-white rounded-lg hover:bg-primary/90 transition flex items-center space-x-2">
<i class="fas fa-magic"></i>
<span>Generate Content</span>
</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<label class="block text-sm font-medium mb-2">Content Type</label>
<div class="grid grid-cols-3 gap-2">
<button class="py-2 border rounded-lg hover:bg-gray-50 transition font-medium">Posts</button>
<button class="py-2 border rounded-lg hover:bg-gray-50 transition">Images</button>
<button class="py-2 border rounded-lg hover:bg-gray-50 transition">Videos</button>
</div>
</div>
<div>
<label class="block text-sm font-medium mb-2">Content Length</label>
<div class="grid grid-cols-3 gap-2">
<button class="py-2 border rounded-lg hover:bg-gray-50 transition">Short</button>
<button class="py-2 border rounded-lg bg-primary text-white hover:bg-primary/90 transition font-medium">Medium</button>
<button class="py-2 border rounded-lg hover:bg-gray-50 transition">Long</button>
</div>
</div>
</div>
<div class="mb-6">
<label class="block text-sm font-medium mb-2">Custom Instructions</label>
<textarea class="w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent h-24"
placeholder="Add any specific instructions for content generation..."></textarea>
</div>
<div class="bg-gray-50 p-4 rounded-lg content-preview">
<h3 class="font-medium mb-2">Generated Weekly Content</h3>
<div class="text-gray-600">
Enter your topic and click "Generate Content" to see AI-generated posts for your week.
</div>
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold">Hashtag Generator</h2>
<button class="px-4 py-2 bg-primary text-white rounded-lg hover:bg-primary/90 transition flex items-center space-x-2">
<i class="fas fa-search"></i>
<span>Find Trending Hashtags</span>
</button>
</div>
<div class="mb-6">
<label class="block text-sm font-medium mb-2">Target Platform</label>
<div class="grid grid-cols-2 md:grid-cols-5 gap-2">
<button class="py-2 border rounded-lg hover:bg-gray-50 transition flex items-center justify-center space-x-2">
<i class="fab fa-twitter text-blue-400"></i>
<span>Twitter</span>
</button>
<button class="py-2 border rounded-lg hover:bg-gray-50 transition flex items-center justify-center space-x-2">
<i class="fab fa-linkedin text-blue-600"></i>
<span>LinkedIn</span>
</button>
<button class="py-2 border rounded-lg hover:bg-gray-50 transition flex items-center justify-center space-x-2">
<i class="fab fa-instagram text-pink-600"></i>
<span>Instagram</span>
</button>
<button class="py-2 border rounded-lg hover:bg-gray-50 transition flex items-center justify-center space-x-2">
<i class="fab fa-facebook text-blue-700"></i>
<span>Facebook</span>
</button>
<button class="py-2 border rounded-lg hover:bg-gray-50 transition flex items-center justify-center space-x-2">
<i class="fab fa-threads text-black"></i>
<span>Threads</span>
</button>
</div>
</div>
<div class="flex flex-wrap gap-2 mb-4">
<div class="bg-gray-100 px-3 py-1 rounded-full text-sm hashtag-chip hover:shadow-sm">
#digitalmarketing <i class="fas fa-plus ml-1 text-xs text-gray-500"></i>
</div>
<div class="bg-gray-100 px-3 py-1 rounded-full text-sm hashtag-chip hover:shadow-sm">
#socialmediatips <i class="fas fa-plus ml-1 text-xs text-gray-500"></i>
</div>
<div class="bg-gray-100 px-3 py-1 rounded-full text-sm hashtag-chip hover:shadow-sm">
#contentcreation <i class="fas fa-plus ml-1 text-xs text-gray-500"></i>
</div>
<div class="bg-gray-100 px-3 py-1 rounded-full text-sm hashtag-chip hover:shadow-sm">
#marketingstrategy <i class="fas fa-plus ml-1 text-xs text-gray-500"></i>
</div>
<div class="bg-gray-100 px-3 py-1 rounded-full text-sm hashtag-chip hover:shadow-sm">
#brandawareness <i class="fas fa-plus ml-1 text-xs text-gray-500"></i>
</div>
</div>
<div class="text-sm text-gray-500">
Click on hashtags to add them to your posts. We analyze trending hashtags based on your topic and platforms.
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold">Weekly Schedule Preview</h2>
<button class="px-4 py-2 bg-primary text-white rounded-lg hover:bg-primary/90 transition flex items-center space-x-2">
<i class="far fa-save"></i>
<span>Save Schedule</span>
</button>
</div>
<div class="overflow-x-auto">
<table class="w-full">
<thead>
<tr class="border-b">
<th class="text-left py-3">Day</th>
<th class="text-left py-3">Time</th>
<th class="text-left py-3">Platform</th>
<th class="text-left py-3">Content</th>
<th class="text-left py-3">Status</th>
</tr>
</thead>
<tbody class="divide-y">
<tr class="hover:bg-gray-50">
<td class="py-3 font-medium">Monday</td>
<td class="py-3">9:00 AM</td>
<td class="py-3">
<div class="flex items-center space-x-2">
<i class="fab fa-twitter text-blue-400"></i>
<span>Twitter</span>
</div>
</td>
<td class="py-3 text-sm text-gray-600">Industry trends analysis...</td>
<td class="py-3">
<span class="px-2 py-1 bg-green-100 text-green-800 text-xs rounded-full">Ready</span>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="py-3 font-medium">Tuesday</td>
<td class="py-3">10:30 AM</td>
<td class="py-3">
<div class="flex items-center space-x-2">
<i class="fab fa-linkedin text-blue-600"></i>
<span>LinkedIn</span>
</div>
</td>
<td class="py-3 text-sm text-gray-600">Professional insights...</td>
<td class="py-3">
<span class="px-2 py-1 bg-green-100 text-green-800 text-xs rounded-full">Ready</span>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="py-3 font-medium">Wednesday</td>
<td class="py-3">12:00 PM</td>
<td class="py-3">
<div class="flex items-center space-x-2">
<i class="fab fa-instagram text-pink-600"></i>
<span>Instagram</span>
</div>
</td>
<td class="py-3 text-sm text-gray-600">Visual content showcase...</td>
<td class="py-3">
<span class="px-2 py-1 bg-yellow-100 text-yellow-800 text-xs rounded-full">Pending</span>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="py-3 font-medium">Thursday</td>
<td class="py-3">2:00 PM</td>
<td class="py-3">
<div class="flex items-center space-x-2">
<i class="fab fa-facebook text-blue-700"></i>
<span>Facebook</span>
</div>
</td>
<td class="py-3 text-sm text-gray-600">Community engagement...</td>
<td class="py-3">
<span class="px-2 py-1 bg-yellow-100 text-yellow-800 text-xs rounded-full">Pending</span>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="py-3 font-medium">Friday</td>
<td class="py-3">4:30 PM</td>
<td class="py-3">
<div class="flex items-center space-x-2">
<i class="fab fa-threads text-black"></i>
<span>Threads</span>
</div>
</td>
<td class="py-3 text-sm text-gray-600">Weekend discussion starter...</td>
<td class="py-3">
<span class="px-2 py-1 bg-green-100 text-green-800 text-xs rounded-full">Ready</span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="mt-6 flex justify-end space-x-3">
<button class="px-4 py-2 border rounded-lg hover:bg-gray-50 transition">
Edit Schedule
</button>
<button class="px-4 py-2 bg-secondary text-white rounded-lg hover:bg-secondary/90 transition flex items-center space-x-2">
<i class="fas fa-paper-plane"></i>
<span>Confirm & Schedule</span>
</button>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-white border-t py-6">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-4 md:mb-0">
<i class="fas fa-rocket text-xl text-primary"></i>
<span class="font-bold text-dark">OmniPost</span>
</div>
<div class="text-sm text-gray-500">
© 2023 OmniPost. All rights reserved.
<a href="#" class="hover:text-primary ml-4">Terms</a>
<a href="#" class="hover:text-primary ml-4">Privacy</a>
<a href="#" class="hover:text-primary ml-4">Help</a>
</div>
<div class="flex space-x-4 mt-4 md:mt-0">
<a href="#" class="text-gray-500 hover:text-primary transition" data-tooltip="Twitter">
<i class="fab fa-twitter text-lg"></i>
</a>
<a href="#" class="text-gray-500 hover:text-primary transition" data-tooltip="Facebook">
<i class="fab fa-facebook text-lg"></i>
</a>
<a href="#" class="text-gray-500 hover:text-primary transition" data-tooltip="Instagram">
<i class="fab fa-instagram text-lg"></i>
</a>
<a href="#" class="text-gray-500 hover:text-primary transition" data-tooltip="LinkedIn">
<i class="fab fa-linkedin text-lg"></i>
</a>
</div>
</div>
</div>
</footer>
</div>
<script>
</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=kattastrofik-kattastrofey/omnipost" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |