Spaces:
Running
Running
Project: AI Novel Director Core Concept AI Novel Director is a creative environment for writing novels. It's designed to be an all-in-one application where you, the writer, act as the "Director" of your story, and an integrated AI serves as your multi-talented "Creative Assistant." The goal is to provide a seamless and intuitive space that eliminates distractions and helps you bring your ideas to life. Visual Design: The "Ethereal Scrapbook" The app’s design is guided by an "Ethereal Scrapbook" aesthetic, creating a beautiful, calming, and highly personal workspace that is both modern and inspiring. * Layout and Feel: The overall layout is clean and spacious. Your projects and ideas are presented on a dashboard as floating cards, creating an organized yet visually rich hub. The background has a subtle grainy texture with soft, blurry elements to create a sense of depth. * Intelligent Writing Interface: Inside the editor, the design provides direct visual feedback on your text. Complex sentences are softly highlighted in one color, and difficult passages in another, giving you at-a-glance insights into your prose without being distracting. * Seamless AI and Command Tools: When you need to perform an action quickly, a minimal command palette appears with a translucent "frosted glass" effect, allowing you to see your work behind it. The AI Assistant lives in a clean side panel with a conversational interface and elegant, pill-shaped menus for its suggestions. * Elegant Themes and Colors: The app features beautiful light and dark modes. The aesthetic adapts smoothly, using a palette of ethereal colors like soft pastels, creamy whites, and muted earth tones. The design makes use of gentle gradients and transparent surfaces to create a layered, polished, and comfortable experience in either theme. * Use a light theme as the default, no shadows, and no rounded corners/only 90-degree corners * Additional visual design requests: the visual design creates a clean, sleek modern and flat aesthetic that combines: * Sharp 90-degree corners throughout * No shadows, completely flat, clean design, using only borders and color contrast * Clean white background with dark grey UI elements * Minimal use of colors except for specific UI feedback * Clear visual hierarchy through spacing and borders * Flat design with no depth effects * layout to be more compact and use tabs for better organization. * Tab-Based Navigation: Main sections are now organized into tabs * Compact Bottom Panel: Reduced height with tabs * Context-Specific Views: Each tab shows only relevant information and tools * Consistent Height: Main content area maintains a fixed height to minimize scrolling * Quick Access: Command palette includes tab switching commands * additionally, adapt the inspiration from the provided images to fit the AI Novel Director application. Key Features The application is structured into five main modules, each designed to support a different stage of the creative process. 1. The Museion (Inspiration Engine) This is your digital scrapbook for brainstorming and collecting ideas. * Inspiration Board: A fluid, scrapbook-like grid where you can add and arrange various types of content, including text notes, images, links, quotes, and audio clips. * AI Idea Generation: The AI can generate new ideas (like character concepts, plot twists, or setting descriptions) that appear as new cards on your board. * Constellation View: A unique visual tool that shows you how your ideas are thematically connected, appearing as an interactive galaxy of concepts that you can explore. 2. The Blueprint (Planning Engine) This module helps you structure your novel and build your world. * Interactive Outline: A flexible, card-based outliner for organizing your story by chapters and scenes. You can easily drag and drop elements to reorder your narrative. * Omni-Codex: A centralized knowledge base for your entire project. It includes: * Character Bible: Create rich profiles for your characters, complete with images, backstories, and visual maps of their relationships. * World Anvil: Detail your story's world with descriptions of locations, interactive maps, and a timeline for historical events. * Style Lab: Define, analyze, and visualize the unique writing style and voice for your novel. 3. The Studio (Writing Engine) The heart of the application—a powerful and focused writing environment. * Smart Editor: A clean, distraction-free text editor. It intelligently highlights complex sentences to help you refine your prose and automatically links character and location names back to their entries in your Omni-Codex. * AI Assistant Panel: A context-aware AI assistant is always available in a side panel. You can chat with it, ask it to do research, or have it brainstorm alongside you without leaving your manuscript. * Inline AI Editing: Simply highlight any text to bring up a menu of AI-powered actions like "Improve," "Rewrite," "Expand," or "Condense." 4. The Launchpad (Publishing Engine) Tools to prepare your finished manuscript for the world. * AI Pitch Kit Generator: An AI-guided wizard that helps you create a professional logline, synopsis, and query letter for agents and publishers. * Smart Formatting & Export: Automatically formats your manuscript into industry-standard templates for export. * Submission Tracker: A simple tool to track which agents or publishers you've sent your manuscript to and manage their responses. 5. The Momentum Engine (Motivation Engine) Features designed to keep you inspired and on track. * Director's Dashboard: A central hub that displays your writing statistics, such as daily word counts, project progress, and writing streaks. It also offers personalized tips and inspirational quotes. * Writing Sprints: Set focused writing sessions with word count or time-based goals, complete with AI-powered encouragement to keep you going. * Achievement System: Unlock beautifully designed, hand-drawn badges for reaching writing milestones and maintaining consistent habits. - Initial Deployment
0778c4a
verified
<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> |