diff --git a/leptos/Cargo.toml b/leptos/Cargo.toml
index 347311c..0630cab 100644
--- a/leptos/Cargo.toml
+++ b/leptos/Cargo.toml
@@ -6,10 +6,11 @@ edition = "2024"
[dependencies]
codee = { version = "0.3.0", features = ["json_serde"] }
console_error_panic_hook = "0.1.7"
-leptos = { version = "0.7.7", features = ["csr", "nightly"] }
+leptos = { version = "0.7.7", features = ["csr", "nightly", "tracing"] }
leptos-use = { version = "0.15.7", features = ["storage", "docs" ] }
leptos_meta = "0.7.7"
leptos_router = { version = "0.7.7", features = ["tracing"] }
+reactive_stores = "0.1.8"
serde = { workspace = true, features = ["derive"] }
stylance = "0.5.5"
thaw = { version = "0.4.4", features = ["csr", "nightly"] }
diff --git a/leptos/Makefile b/leptos/Makefile
index 17586e3..4fedb96 100644
--- a/leptos/Makefile
+++ b/leptos/Makefile
@@ -5,5 +5,11 @@ fmt:
# cargo +nightly fmt
leptosfmt src
+check:
+ cargo clippy --no-deps -- -Dwarnings
+
+fix: fmt
+ cargo clippy --fix --allow-dirty
+
css:
stylance . --output-file app.css
diff --git a/leptos/app.css b/leptos/app.css
index f5b6371..ebe4e26 100644
--- a/leptos/app.css
+++ b/leptos/app.css
@@ -1,5 +1,5 @@
// This file is generated from ./src/app.module.scss
-.header-bb66a2d {
+.header-372e0a1 {
}
body {
@@ -12,11 +12,16 @@ main {
margin: 1ex;
}
-.nav-bb66a2d {
+.nav-372e0a1 {
display: flex;
flex-direction: row;
}
-.nav-bb66a2d a {
+.nav-372e0a1 a {
margin: 1ex;
}
+
+.login-372e0a1 {
+ max-width: 30em;
+ margin: auto;
+}
diff --git a/leptos/index.html b/leptos/index.html
index d570613..da5515c 100644
--- a/leptos/index.html
+++ b/leptos/index.html
@@ -4,14 +4,12 @@
-