kopuz-pages 0.8.2

A modern, lightweight music player built with Rust and Dioxus.
//! Page-level Dioxus components for Kopuz: album, artist, discover, home,
//! search, settings, playlist views, and associated sub-components.

pub mod activity;
pub mod album;
pub mod artist;
pub mod favorites;
pub mod favorites_body;
pub mod home;
pub mod home_body;
pub mod layout;
pub mod library;
pub mod playlists;
pub mod radio;
pub mod scroll_persist;
pub mod search;
pub mod server;
pub mod settings;
pub mod settings_actions;
#[cfg(not(target_os = "android"))]
pub mod theme_editor;
#[cfg(all(not(target_arch = "wasm32"), not(target_os = "android")))]
pub mod ytdlp;
#[cfg(all(not(target_arch = "wasm32"), not(target_os = "android")))]
pub mod ytdlp_jobs;