LivePulse / frontend /index.html
DivYonko
first commit
11a0fc5
raw
history blame contribute delete
524 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Live Dashboard</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
body { font-family: Arial; padding: 20px; }
.chat-card { border: 1px solid #ccc; margin-bottom: 8px; padding: 8px; border-radius: 5px; }
</style>
</head>
<body>
<h2>Live Chat Dashboard</h2>
<h3>Sentiment Trend</h3>
<canvas id="sentimentChart" width="400" height="200"></canvas>
<div id="chat-container"></div>
<script src="main.js"></script>
</body>
</html>