botserver/web/desktop/news/index.html
Rodrigo Rodriguez (Pragmatismo) b9395cb0d7 feat(desktop): add new navigation links to index.html
Added new navigation links for Dashboard, Editor, Player, Paper, Settings, Tables, and News sections. Each link includes click handlers to switch sections and active state styling. This expands the application's navigation options for better user access to different features.
2025-11-15 19:52:24 -03:00

19 lines
401 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>News</title>
<link rel="stylesheet" href="../css/global.css">
<link rel="stylesheet" href="news.css">
</head>
<body>
<div id="main-content">
<div class="content-section active">
<div class="panel">
<!-- News content will go here -->
<h1>News</h1>
</div>
</div>
</div>
<script src="news.js"></script>
</body>
</html>