add initial crates and apps

This commit is contained in:
Evan Carroll 2026-01-12 15:34:40 -06:00
parent 5c87ba3519
commit 1ca300098f
113 changed files with 28169 additions and 0 deletions

View file

@ -0,0 +1,15 @@
//! Page components for user UI.
//!
//! Note: Editor pages and NewRealmPage have been moved to admin-ui.
pub mod home;
pub mod login;
pub mod password_reset;
pub mod realm;
pub mod signup;
pub use home::*;
pub use login::*;
pub use password_reset::*;
pub use realm::*;
pub use signup::*;