yggdrasil/src/pages/about.rs
xfy 886eeca915
Some checks failed
CI / check (push) Has been cancelled
CI / build (push) Has been cancelled
style: 全项目 rsx! 格式规范化(cargo fmt)
2026-07-15 17:49:03 +08:00

28 lines
822 B
Rust

//! 关于页面模块。
//!
//! 对应路由 `/about`。
//!
//! 该页面为静态展示页面,不发起任何 server function 调用,
//! 直接渲染博客介绍、技术栈与主要特性。
use dioxus::prelude::*;
/// 关于页面组件,对应路由 `/about`。
///
/// 展示 Yggdrasil 博客的简介、技术栈与功能特性。
#[component]
pub fn About() -> Element {
rsx! {
div { class: "animate-page-enter",
header { class: "page-header mb-6",
h1 { class: "text-4xl font-bold text-paper-primary tracking-tight",
"关于"
}
}
article { class: "prose dark:prose-invert max-w-none text-paper-content leading-relaxed",
p { "世界……遗忘我……" }
}
}
}
}