web UI, tailwind, icons, login

This commit is contained in:
2026-03-08 11:31:32 +01:00
parent 149bf43c01
commit e1578af68e
27 changed files with 462 additions and 10 deletions

View File

@@ -3,6 +3,19 @@ use std::io::{self, Write};
use env_logger::fmt::Formatter;
use log::Record;
pub const REFERENCE_SPLASHES: &[&str] = &[
"quote engine",
"powered by rust",
"made in poznań",
"blazingly fast",
"always be kind",
"as seen on localhost",
"now with extra lifetimes",
"memory palace",
"take a break sometimes",
"segmentation fault (jk)",
];
pub fn envlogger_write_format(buf: &mut Formatter, rec: &Record) -> io::Result<()> {
let level_string = format!("{}", rec.level());
let level_style = buf.default_level_style(rec.level());