Spaces:
Running
Running
File size: 21,390 Bytes
0778c4a |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Novel Director</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: {
'ethereal-white': '#f8f9fa',
'ethereal-dark': '#2d3748',
'ethereal-light': '#e2e8f0',
'ethereal-accent': '#a0aec0',
'ethereal-blue': '#90cdf4',
'ethereal-purple': '#d6bcfa',
'ethereal-green': '#9ae6b4',
'ethereal-yellow': '#fbd38d',
'ethereal-red': '#fcbba1'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f8f9fa;
color: #2d3748;
}
.card {
border: 1px solid #e2e8f0;
transition: all 0.2s ease;
}
.card:hover {
border-color: #cbd5e0;
}
.tab-active {
border-bottom: 2px solid #2d3748;
font-weight: 600;
}
.complex-sentence {
background-color: rgba(144, 205, 244, 0.2);
}
.difficult-passage {
background-color: rgba(252, 187, 161, 0.2);
}
.command-palette {
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.8);
border: 1px solid #e2e8f0;
}
.ai-assistant-panel {
background-color: #f1f5f9;
border-left: 1px solid #e2e8f0;
}
.inspiration-card {
border: 1px solid #e2e8f0;
}
.outline-card {
border-left: 3px solid #90cdf4;
}
.codex-card {
border-left: 3px solid #d6bcfa;
}
.dashboard-card {
border: 1px solid #e2e8f0;
}
.achievement-badge {
border: 1px solid #e2e8f0;
}
.progress-bar {
height: 8px;
}
.sprint-goal {
border: 1px dashed #cbd5e0;
}
.editor-container {
border: 1px solid #e2e8f0;
}
.editor-toolbar {
border-bottom: 1px solid #e2e8f0;
}
.ai-suggestion {
background-color: #ebf8ff;
border: 1px solid #bee3f8;
}
.constellation-node {
background-color: #e6fffa;
border: 1px solid #b2f5ea;
}
.pitch-card {
border: 1px solid #e2e8f0;
}
.export-option {
border: 1px solid #e2e8f0;
}
.tracker-entry {
border-bottom: 1px solid #e2e8f0;
}
.tab-content {
height: calc(100vh - 120px);
overflow-y: auto;
}
.bottom-panel {
height: 180px;
}
.scroll-container {
max-height: calc(100vh - 200px);
overflow-y: auto;
}
</style>
</head>
<body class="bg-ethereal-white text-ethereal-dark">
<!-- Header -->
<header class="border-b border-ethereal-light px-6 py-4 flex justify-between items-center">
<div class="flex items-center">
<div class="w-8 h-8 bg-ethereal-blue rounded mr-3"></div>
<h1 class="text-xl font-bold">AI Novel Director</h1>
</div>
<div class="flex items-center space-x-4">
<button class="p-2 hover:bg-ethereal-light rounded">
<i class="fas fa-search"></i>
</button>
<button class="p-2 hover:bg-ethereal-light rounded">
<i class="fas fa-bell"></i>
</button>
<div class="w-8 h-8 bg-ethereal-purple rounded-full"></div>
</div>
</header>
<!-- Main Content -->
<main class="flex">
<!-- Main Content Area -->
<div class="flex-1 p-6">
<!-- Tab Navigation -->
<div class="flex border-b border-ethereal-light mb-6">
<button class="px-4 py-2 tab-active">The Museion</button>
<button class="px-4 py-2">The Blueprint</button>
<button class="px-4 py-2">The Studio</button>
<button class="px-4 py-2">The Launchpad</button>
<button class="px-4 py-2">The Momentum Engine</button>
</div>
<!-- Tab Content -->
<div class="tab-content">
<!-- The Museion (Inspiration Engine) -->
<div>
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold">The Museion</h2>
<div class="flex space-x-2">
<button class="px-4 py-2 bg-ethereal-light border border-ethereal-accent rounded">
<i class="fas fa-plus mr-2"></i>Add Idea
</button>
<button class="px-4 py-2 bg-ethereal-blue text-white rounded">
<i class="fas fa-magic mr-2"></i>Generate Ideas
</button>
</div>
</div>
<!-- Inspiration Board -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-8">
<div class="inspiration-card p-4">
<div class="flex justify-between mb-2">
<span class="text-sm font-medium text-ethereal-blue">Character</span>
<i class="fas fa-ellipsis-h text-ethereal-accent"></i>
</div>
<h3 class="font-bold mb-2">Mysterious Detective</h3>
<p class="text-sm text-ethereal-dark mb-3">A detective with a hidden past who solves crimes using unconventional methods.</p>
<div class="flex items-center text-xs text-ethereal-accent">
<i class="fas fa-tag mr-1"></i>
<span>Protagonist</span>
</div>
</div>
<div class="inspiration-card p-4">
<div class="flex justify-between mb-2">
<span class="text-sm font-medium text-ethereal-purple">Setting</span>
<i class="fas fa-ellipsis-h text-ethereal-accent"></i>
</div>
<h3 class="font-bold mb-2">Neo-Tokyo 2087</h3>
<p class="text-sm text-ethereal-dark mb-3">A cyberpunk metropolis where technology and tradition collide in unexpected ways.</p>
<div class="flex items-center text-xs text-ethereal-accent">
<i class="fas fa-tag mr-1"></i>
<span>Futuristic</span>
</div>
</div>
<div class="inspiration-card p-4">
<div class="flex justify-between mb-2">
<span class="text-sm font-medium text-ethereal-green">Plot</span>
<i class="fas fa-ellipsis-h text-ethereal-accent"></i>
</div>
<h3 class="font-bold mb-2">The Memory Thief</h3>
<p class="text-sm text-ethereal-dark mb-3">A thief who steals memories to solve cold cases, but discovers a conspiracy.</p>
<div class="flex items-center text-xs text-ethereal-accent">
<i class="fas fa-tag mr-1"></i>
<span>Mystery</span>
</div>
</div>
<div class="inspiration-card p-4">
<div class="flex justify-between mb-2">
<span class="text-sm font-medium text-ethereal-yellow">Quote</span>
<i class="fas fa-ellipsis-h text-ethereal-accent"></i>
</div>
<p class="text-sm italic text-ethereal-dark mb-3">"The future is not something we enter. The future is something we create."</p>
<div class="flex items-center text-xs text-ethereal-accent">
<i class="fas fa-user mr-1"></i>
<span>Fictional Character</span>
</div>
</div>
<div class="inspiration-card p-4">
<div class="flex justify-between mb-2">
<span class="text-sm font-medium text-ethereal-red">Conflict</span>
<i class="fas fa-ellipsis-h text-ethereal-accent"></i>
</div>
<h3 class="font-bold mb-2">The Digital Divide</h3>
<p class="text-sm text-ethereal-dark mb-3">Society split between those who have access to advanced technology and those who don't.</p>
<div class="flex items-center text-xs text-ethereal-accent">
<i class="fas fa-tag mr-1"></i>
<span>Social Issue</span>
</div>
</div>
<div class="inspiration-card p-4 border-dashed border-2 border-ethereal-accent flex items-center justify-center">
<div class="text-center">
<i class="fas fa-plus text-ethereal-accent text-2xl mb-2"></i>
<p class="text-sm text-ethereal-accent">Add new idea</p>
</div>
</div>
</div>
<!-- Constellation View -->
<div class="mb-8">
<h3 class="font-bold mb-4">Constellation View</h3>
<div class="bg-ethereal-light p-6 rounded relative" style="height: 300px;">
<div class="absolute constellation-node w-24 h-24 rounded-full flex items-center justify-center top-10 left-10">
<span class="text-xs font-medium text-center">Detective</span>
</div>
<div class="absolute constellation-node w-24 h-24 rounded-full flex items-center justify-center top-20 right-20">
<span class="text-xs font-medium text-center">Neo-Tokyo</span>
</div>
<div class="absolute constellation-node w-24 h-24 rounded-full flex items-center justify-center bottom-10 left-1/3">
<span class="text-xs font-medium text-center">Memory Thief</span>
</div>
<div class="absolute constellation-node w-24 h-24 rounded-full flex items-center justify-center bottom-20 right-10">
<span class="text-xs font-medium text-center">Digital Divide</span>
</div>
<svg class="absolute inset-0 w-full h-full">
<line x1="100" y1="100" x2="300" y2="120" stroke="#cbd5e0" stroke-width="1" />
<line x1="300" y1="120" x2="200" y2="250" stroke="#cbd5e0" stroke-width="1" />
<line x1="200" y1="250" x2="400" y2="200" stroke="#cbd5e0" stroke-width="1" />
<line x1="100" y1="100" x2="200" y2="250" stroke="#cbd5e0" stroke-width="1" />
</svg>
</div>
</div>
</div>
</div>
</div>
<!-- AI Assistant Panel -->
<div class="ai-assistant-panel w-80 p-4">
<div class="flex justify-between items-center mb-4">
<h3 class="font-bold">AI Assistant</h3>
<button class="text-ethereal-accent">
<i class="fas fa-cog"></i>
</button>
</div>
<div class="mb-4">
<div class="bg-white p-3 mb-3 rounded">
<p class="text-sm">I've generated 3 new character concepts based on your detective theme. Would you like to explore them?</p>
</div>
<div class="bg-ethereal-blue text-white p-3 mb-3 rounded">
<p class="text-sm">Hello! I'm your Creative Assistant. How can I help with your novel today?</p>
</div>
</div>
<div class="flex mb-4">
<input type="text" placeholder="Ask me anything..." class="flex-1 border border-ethereal-accent rounded-l px-3 py-2 text-sm">
<button class="bg-ethereal-dark text-white px-4 py-2 rounded-r">
<i class="fas fa-paper-plane"></i>
</button>
</div>
<div>
<h4 class="font-medium mb-2">Quick Actions</h4>
<div class="flex flex-wrap gap-2">
<button class="ai-suggestion px-3 py-1 text-xs rounded-full">Character Profile</button>
<button class="ai-suggestion px-3 py-1 text-xs rounded-full">Plot Twist</button>
<button class="ai-suggestion px-3 py-1 text-xs rounded-full">World Building</button>
<button class="ai-suggestion px-3 py-1 text-xs rounded-full">Dialogue</button>
</div>
</div>
</div>
</main>
<!-- Bottom Panel -->
<div class="border-t border-ethereal-light bottom-panel">
<div class="flex h-full">
<!-- Writing Stats -->
<div class="w-1/3 p-4 border-r border-ethereal-light">
<h4 class="font-bold mb-2">Today's Progress</h4>
<div class="flex items-center mb-2">
<div class="w-8 h-8 bg-ethereal-green rounded-full flex items-center justify-center mr-2">
<i class="fas fa-pen text-white text-xs"></i>
</div>
<div>
<p class="text-sm font-medium">Words Written</p>
<p class="text-lg font-bold">1,247</p>
</div>
</div>
<div class="w-full bg-ethereal-light rounded-full h-2 mb-1">
<div class="bg-ethereal-green h-2 rounded-full" style="width: 65%"></div>
</div>
<p class="text-xs text-ethereal-accent">65% of daily goal (1,900 words)</p>
</div>
<!-- Writing Sprint -->
<div class="w-1/3 p-4 border-r border-ethereal-light">
<h4 class="font-bold mb-2">Writing Sprint</h4>
<div class="flex items-center mb-2">
<div class="w-8 h-8 bg-ethereal-blue rounded-full flex items-center justify-center mr-2">
<i class="fas fa-clock text-white text-xs"></i>
</div>
<div>
<p class="text-sm font-medium">Time Remaining</p>
<p class="text-lg font-bold">24:17</p>
</div>
</div>
<div class="sprint-goal p-2 rounded">
<p class="text-xs mb-1">Current Goal: 500 words in 30 minutes</p>
<p class="text-xs">Words this session: <span class="font-bold">321</span></p>
</div>
</div>
<!-- Achievements -->
<div class="w-1/3 p-4">
<h4 class="font-bold mb-2">Recent Achievements</h4>
<div class="flex space-x-2">
<div class="achievement-badge w-12 h-12 rounded flex items-center justify-center">
<i class="fas fa-fire text-ethereal-red"></i>
</div>
<div class="achievement-badge w-12 h-12 rounded flex items-center justify-center">
<i class="fas fa-book text-ethereal-blue"></i>
</div>
<div class="achievement-badge w-12 h-12 rounded flex items-center justify-center">
<i class="fas fa-star text-ethereal-yellow"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Command Palette (Hidden by default) -->
<div class="command-palette fixed inset-0 m-auto w-96 h-64 rounded hidden">
<div class="p-4 border-b border-ethereal-light">
<input type="text" placeholder="Type a command or search..." class="w-full px-3 py-2 border border-ethereal-accent rounded">
</div>
<div class="p-2">
<div class="px-3 py-2 hover:bg-ethereal-light cursor-pointer flex items-center">
<i class="fas fa-file-alt mr-2 text-ethereal-blue"></i>
<span>New Project</span>
</div>
<div class="px-3 py-2 hover:bg-ethereal-light cursor-pointer flex items-center">
<i class="fas fa-save mr-2 text-ethereal-green"></i>
<span>Save Current Document</span>
</div>
<div class="px-3 py-2 hover:bg-ethereal-light cursor-pointer flex items-center">
<i class="fas fa-magic mr-2 text-ethereal-purple"></i>
<span>Generate Plot Ideas</span>
</div>
<div class="px-3 py-2 hover:bg-ethereal-light cursor-pointer flex items-center">
<i class="fas fa-user-edit mr-2 text-ethereal-yellow"></i>
<span>Character Development</span>
</div>
</div>
</div>
<script>
// Tab switching functionality
document.querySelectorAll('.tab-content > div').forEach((tab, index) => {
if (index !== 0) tab.classList.add('hidden');
});
document.querySelectorAll('.flex.border-b button').forEach((tabBtn, index) => {
tabBtn.addEventListener('click', () => {
// Remove active class from all tabs
document.querySelectorAll('.flex.border-b button').forEach(btn => {
btn.classList.remove('tab-active');
});
// Add active class to clicked tab
tabBtn.classList.add('tab-active');
// Hide all tab content
document.querySelectorAll('.tab-content > div').forEach(content => {
content.classList.add('hidden');
});
// Show corresponding content
document.querySelectorAll('.tab-content > div')[index].classList.remove('hidden');
});
});
// Command palette toggle
document.addEventListener('keydown', (e) => {
if (e.ctrlKey && e.key === 'k') {
e.preventDefault();
document.querySelector('.command-palette').classList.toggle('hidden');
}
});
// Close command palette when clicking outside
document.addEventListener('click', (e) => {
const commandPalette = document.querySelector('.command-palette');
if (!commandPalette.classList.contains('hidden') &&
!commandPalette.contains(e.target) &&
!e.target.closest('.command-palette')) {
commandPalette.classList.add('hidden');
}
});
</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=algovenus/qwen3coder-aiwriter" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |