Ruby/dashboard/templates/growth.html

51 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ruby's Brain Growth</title>
<style>
body {
background-color: #121212;
color: #e0e0e0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding: 20px;
}
h1 {
color: #ffffff;
}
.stat {
margin-bottom: 20px;
font-size: 1.5em;
}
.nav {
background-color: #1e1e1e;
padding: 10px;
margin-bottom: 20px;
}
.nav a {
color: #e0e0e0;
margin-right: 20px;
text-decoration: none;
}
</style>
</head>
<body>
<div class="nav">
<a href="/">🏠 Home</a>
<a href="/journal">📓 Journal</a>
<a href="/concepts">🧠 Concepts</a>
<a href="/brainmap">🕸️ Brain Map</a>
<a href="/growth">📈 Growth</a>
<a href="/dreams">💬 Dreams</a>
</div>
<h1>📈 Ruby's Brain Growth</h1>
<div class="stat">Vocabulary Size: {{ vocab_size }}</div>
<div class="stat">Brain Map Size: {{ brainmap_size }}</div>
<div class="stat">Memory Entries: {{ memory_size }}</div>
</body>
</html>