-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (74 loc) · 1.78 KB
/
index.html
File metadata and controls
74 lines (74 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Discord Sentiment Dashboard</title>
<style>
body {
font-family: system-ui, sans-serif;
background-color: #111;
color: #eee;
margin: 0;
padding: 0;
}
header {
text-align: center;
padding: 2rem 1rem 1rem;
}
h1 {
font-size: 2rem;
margin-bottom: 0.2rem;
}
p {
color: #aaa;
}
a {
color: #aaa;
}
iframe {
width: 100%;
height: 600px;
border: none;
margin-top: 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 1rem;
}
.card {
margin-bottom: 3rem;
background: #1a1a1a;
border-radius: 12px;
padding: 1rem;
box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
}
h2 {
color: #ccc;
font-size: 1.5rem;
}
</style>
</head>
<body>
<header>
<h1>🧠 VVIP Sentiment Dashboard</h1>
<p>Track moods and vibes of VVIP over time</p>
</header>
<div class="container">
<div class="card">
<h2>📊 User Sentiment Distribution</h2>
<p><a href="user_sentiment_plot.html" target="_blank">view page</a></p>
<iframe src="user_sentiment_plot.html" title="User Sentiment"></iframe>
</div>
<div class="card">
<h2>📈 Average Server Mood Over Time</h2>
<p><a href="average_server_mood.html" target="_blank">view page</a></p>
<iframe
src="average_server_mood.html"
title="Server Mood Over Time"
></iframe>
</div>
</div>
</body>
</html>