feat(desktop): 迁移启动页到 React 并接入 Motion 动画

This commit is contained in:
2026-02-16 05:10:15 +08:00
parent 5edab0ba1d
commit 93a2519012
12 changed files with 279 additions and 103 deletions

View File

@@ -0,0 +1,11 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { SplashApp } from './components/SplashApp'
import './styles.css'
// biome-ignore lint/style/noNonNullAssertion: 一定存在
createRoot(document.getElementById('root')!).render(
<StrictMode>
<SplashApp />
</StrictMode>,
)