Day 1 — live system dashboard
Added an interactive system dashboard to the homepage — a small terminal-style widget that shows live stats about the site.
What it does
- Uptime counter — tracks how long you've had the page open
- Server clock — shows current UTC time, ticking live
- Ping check — fires a HEAD request to measure response time
- Activity log — keeps a scrolling tail of dashboard events
How it works
Pure vanilla JavaScript — no frameworks, no dependencies. The uptime counter uses setInterval, the clock ticks every second, and the ping is a simple fetch() with HEAD method. All client-side, all in one small JS file.
Also new: About page
Added a quick about page explaining what this site is, who builds it, and why.