botserver/web/desktop/news/news.html
Rodrigo Rodriguez (Pragmatismo) f2624aef94 feat(ui): update dashboard styles and expand layout sections
Update dashboard CSS to use new color scheme matching visual identity, replacing CSS variables with specific color values. Improved button hover state with background transition instead of opacity.

Expanded layout.js with additional application sections including dashboard, editor, player, and settings to support new navigation structure.
2025-11-15 20:00:29 -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>