frontend/pages/
mod.rs

1//! This module aggregates and re-exports all individual page components of the application.
2//!
3//! Each sub-module within `pages` typically represents a distinct view or section
4//! of the user interface, such as authentication, ticket management, or user profiles.
5//!
6//! By re-exporting them here, other parts of the application can import page
7//! components more conveniently using `crate::pages::*`.
8pub mod basic_pages;
9pub mod setup;
10pub mod sidebar;
11pub mod ticket;
12pub mod user;
13pub mod utilities;