| <!DOCTYPE html> |
| <html lang="en" class="dark"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>RoboJacky's Ultimate Draft</title> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script> |
| tailwind.config = { |
| darkMode: 'class', |
| theme: { |
| extend: { |
| colors: { |
| primary: { |
| 500: '#6366f1', |
| }, |
| secondary: { |
| 500: '#8b5cf6', |
| } |
| } |
| } |
| } |
| } |
| </script> |
| </head> |
| <body class="bg-gray-100 dark:bg-gray-900 min-h-screen flex flex-col"> |
| <custom-navbar></custom-navbar> |
| <div class="container mx-auto px-4 py-8 flex-grow"> |
| <header class="flex justify-between items-center mb-8"> |
| <h1 class="text-3xl font-bold text-gray-800 dark:text-white">RoboJacky's Ultimate Draft</h1> |
| <button id="theme-toggle" class="p-2 rounded-full bg-gray-200 dark:bg-gray-700"> |
| <i data-feather="moon" class="text-gray-800 dark:text-white"></i> |
| </button> |
| </header> |
|
|
| <main class="grid grid-cols-1 md:grid-cols-3 gap-6"> |
| |
| <div class="md:col-span-2 bg-white dark:bg-gray-800 rounded-lg shadow-lg p-6"> |
| <div class="flex justify-between items-center mb-4"> |
| <h2 class="text-xl font-semibold text-gray-800 dark:text-white">Draft Editor</h2> |
| <div class="flex space-x-2"> |
| <button class="px-3 py-1 bg-primary-500 text-white rounded-md hover:bg-primary-600 transition"> |
| <i data-feather="save" class="w-4 h-4 inline mr-1"></i> Save |
| </button> |
| <button class="px-3 py-1 bg-secondary-500 text-white rounded-md hover:bg-secondary-600 transition"> |
| <i data-feather="share-2" class="w-4 h-4 inline mr-1"></i> Share |
| </button> |
| </div> |
| </div> |
| |
| <div class="mb-4"> |
| <input type="text" placeholder="Title" class="w-full px-4 py-2 text-2xl font-bold bg-transparent border-b border-gray-200 dark:border-gray-700 focus:outline-none focus:border-primary-500 text-gray-800 dark:text-white"> |
| </div> |
| |
| <div class="prose dark:prose-invert max-w-none"> |
| <textarea class="w-full h-96 px-4 py-2 bg-transparent text-gray-800 dark:text-white focus:outline-none" placeholder="Start writing your draft here..."></textarea> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white dark:bg-gray-800 rounded-lg shadow-lg p-6"> |
| <h2 class="text-xl font-semibold text-gray-800 dark:text-white mb-4">Tools</h2> |
| |
| <div class="space-y-4"> |
| <div> |
| <h3 class="font-medium text-gray-700 dark:text-gray-300 mb-2">Formatting</h3> |
| <div class="flex flex-wrap gap-2"> |
| <button class="p-2 rounded-md bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600"> |
| <i data-feather="bold"></i> |
| </button> |
| <button class="p-2 rounded-md bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600"> |
| <i data-feather="italic"></i> |
| </button> |
| <button class="p-2 rounded-md bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600"> |
| <i data-feather="underline"></i> |
| </button> |
| </div> |
| </div> |
| |
| <div> |
| <h3 class="font-medium text-gray-700 dark:text-gray-300 mb-2">Insert</h3> |
| <div class="flex flex-wrap gap-2"> |
| <button class="p-2 rounded-md bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600"> |
| <i data-feather="image"></i> |
| </button> |
| <button class="p-2 rounded-md bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600"> |
| <i data-feather="link"></i> |
| </button> |
| <button class="p-2 rounded-md bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600"> |
| <i data-feather="code"></i> |
| </button> |
| </div> |
| </div> |
| |
| <div> |
| <h3 class="font-medium text-gray-700 dark:text-gray-300 mb-2">Recent Drafts</h3> |
| <div class="space-y-2"> |
| <a href="#" class="block p-2 rounded-md hover:bg-gray-100 dark:hover:bg-gray-700 text-gray-800 dark:text-white"> |
| <div class="font-medium">Project Proposal</div> |
| <div class="text-sm text-gray-500 dark:text-gray-400">Yesterday</div> |
| </a> |
| <a href="#" class="block p-2 rounded-md hover:bg-gray-100 dark:hover:bg-gray-700 text-gray-800 dark:text-white"> |
| <div class="font-medium">Meeting Notes</div> |
| <div class="text-sm text-gray-500 dark:text-gray-400">2 days ago</div> |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </main> |
| </div> |
| <custom-footer></custom-footer> |
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="script.js"></script> |
| <script>feather.replace();</script> |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
| </body> |
| </html> |