yggdrasil/src/pages/about.rs
xfy fbd706b198 style: format files and update about page content
- Update about page content

- Format code in admin pages, tags, and theme modules
2026-06-29 14:31:04 +08:00

24 lines
709 B
Rust

//! 关于页面模块。
//!
//! 对应路由 `/about`。
//!
//! 该页面为静态展示页面,不发起任何 server function 调用,
//! 直接渲染博客介绍、技术栈与主要特性。
use dioxus::prelude::*;
/// 关于页面组件,对应路由 `/about`。
///
/// 展示 Yggdrasil 博客的简介、技术栈与功能特性。
#[component]
pub fn About() -> Element {
rsx! {
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 { "世界……遗忘我……" }
}
}
}