Add seven sidebar sections (Dashboard, Providers, Chat, Tools, Knowledge Base, Developer, Organization) with fully rendered mock views, nested sub-shells for Developer and Organization, and SearXNG container for future news feed integration. Replaces the previous OverviewPage with a news feed dashboard. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
359 B
Rust
22 lines
359 B
Rust
mod chat;
|
|
mod dashboard;
|
|
pub mod developer;
|
|
mod impressum;
|
|
mod knowledge;
|
|
mod landing;
|
|
pub mod organization;
|
|
mod privacy;
|
|
mod providers;
|
|
mod tools;
|
|
|
|
pub use chat::*;
|
|
pub use dashboard::*;
|
|
pub use developer::*;
|
|
pub use impressum::*;
|
|
pub use knowledge::*;
|
|
pub use landing::*;
|
|
pub use organization::*;
|
|
pub use privacy::*;
|
|
pub use providers::*;
|
|
pub use tools::*;
|