Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>MindScribe</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"> | |
| <link rel="stylesheet" href="ai-sidebar.css"> | |
| <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> | |
| <script src="sidebar-component.js"></script> | |
| </head> | |
| <body> | |
| <div id="app" class="ai-sidebar__container"> | |
| <sidebar-component></sidebar-component> | |
| <main class="ai-sidebar__content"> | |
| <h1>MindScribe</h1> | |
| <p>Welcome to MindScribe, your AI-powered journal and mood tracker.</p> | |
| <!-- Add more HTML content for the MindScribe app here --> | |
| </main> | |
| </div> | |
| <script> | |
| const { createApp } = Vue; | |
| const app = createApp({ | |
| components: { | |
| 'sidebar-component': SidebarComponent | |
| } | |
| // Your app-specific Vue code here | |
| }); | |
| app.mount('#app'); | |
| </script> | |
| </body> | |
| </html> |