refactor: relocate components to app directory structure

This commit is contained in:
2026-06-09 14:43:10 +08:00
parent f060301c24
commit cda55c8f9b
61 changed files with 19 additions and 27 deletions
@@ -0,0 +1,14 @@
"use client";
/**
* Splash 背景
*
* 原始 Dart: lib/ui/splash/widgets/splash_background.dart
* 使用 `Assets.images.picBgHome.image(fit: BoxFit.cover)` 渲染全屏背景图。
*
* 当前实现:纯色 + CSS 渐变占位(待 `public/splash/bg.png` 资源到位后可切换为 `<Image>`)。
*/
import styles from "./splash-background.module.css";
export function SplashBackground() {
return <div className={styles.bg} aria-hidden="true" />;
}