chattyness/crates/chattyness-user-ui/src/pages.rs
Evan Carroll 710985638f feat: profiles and /set profile, and id cards
* New functionality to set meta data on businesscards.
* Can develop a user profile.
* Business cards link to user profile.
2026-01-25 20:13:27 -06:00

19 lines
375 B
Rust

//! 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 profile;
pub mod realm;
pub mod signup;
pub mod user_profile;
pub use home::*;
pub use login::*;
pub use password_reset::*;
pub use profile::*;
pub use realm::*;
pub use signup::*;
pub use user_profile::*;