/// Viewport width threshold below which the application switches to the mobile layout.
pub const MOBILE_BREAKPOINT: i32 = 768;
/// The hash prefix used for hash-based routing.
pub const ROUTE_HASH_PREFIX: &str = "#";
/// The default route path when no hash is present.
pub const DEFAULT_ROUTE_PATH: &str = "/";
/// The target name for opening URLs in a new browser tab.
pub const BLANK_BROWSER_TARGET: &str = "_blank";