logicaffeine_web/ui/pages/news/mod.rs
1//! News section for release notes and updates.
2//!
3//! Provides:
4//! - News index page with article list
5//! - Individual article pages
6//! - Article data model and content
7
8pub mod index;
9pub mod article;
10pub mod data;
11
12pub use index::News;
13pub use article::NewsArticle;
14pub use data::{get_articles, get_article_by_slug, get_all_tags, get_articles_by_tag, format_tag, Article};