2025-11-15 09:48:46 -03:00
|
|
|
<!doctype html>
|
2025-11-15 19:08:26 -03:00
|
|
|
<html lang="en">
|
2025-11-15 09:48:46 -03:00
|
|
|
<head>
|
2025-11-15 19:08:26 -03:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<title>General Bots Desktop</title>
|
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
|
|
|
<link rel="stylesheet" href="css/app.css" />
|
|
|
|
|
<script defer src="js/alpine.js"></script>
|
2025-11-15 09:48:46 -03:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2025-11-15 19:08:26 -03:00
|
|
|
<nav x-data="{ current: 'drive' }">
|
|
|
|
|
<div class="logo">⚡ General Bots</div>
|
2025-11-16 22:53:51 -03:00
|
|
|
<a href="#chat" @click.prevent="current = 'chat'; window.switchSection('chat')"
|
|
|
|
|
:class="{ active: current === 'chat' }">💬 Chat</a>
|
|
|
|
|
|
2025-11-15 19:08:26 -03:00
|
|
|
<a href="#drive" @click.prevent="current = 'drive'; window.switchSection('drive')"
|
|
|
|
|
:class="{ active: current === 'drive' }">📁 Drive</a>
|
|
|
|
|
<a href="#tasks" @click.prevent="current = 'tasks'; window.switchSection('tasks')"
|
|
|
|
|
:class="{ active: current === 'tasks' }">✓ Tasks</a>
|
|
|
|
|
<a href="#mail" @click.prevent="current = 'mail'; window.switchSection('mail')"
|
|
|
|
|
:class="{ active: current === 'mail' }">✉ Mail</a>
|
|
|
|
|
</nav>
|
2025-11-15 09:48:46 -03:00
|
|
|
|
2025-11-15 19:08:26 -03:00
|
|
|
<div id="main-content">
|
|
|
|
|
<!-- Sections will be loaded dynamically -->
|
|
|
|
|
</div>
|
2025-11-15 09:48:46 -03:00
|
|
|
|
2025-11-15 19:08:26 -03:00
|
|
|
<!-- Load Module Scripts -->
|
|
|
|
|
<script src="js/layout.js"></script>
|
|
|
|
|
<script src="drive/drive.js"></script>
|
|
|
|
|
<script src="tasks/tasks.js"></script>
|
|
|
|
|
<script src="mail/mail.js"></script>
|
2025-11-15 21:52:53 -03:00
|
|
|
<script src="dashboard/dashboard.js"></script>
|
|
|
|
|
<script src="editor/editor.js"></script>
|
|
|
|
|
<script src="player/player.js"></script>
|
|
|
|
|
<script src="paper/paper.js"></script>
|
|
|
|
|
<script src="settings/settings.js"></script>
|
|
|
|
|
<script src="tables/tables.js"></script>
|
|
|
|
|
<script src="news/news.js"></script>
|
|
|
|
|
|
2025-11-15 09:48:46 -03:00
|
|
|
</body>
|
|
|
|
|
</html>
|