Files
lifeRestart/apps/web/src/containers/Home.tsx
T
2026-08-15 22:38:31 +08:00

34 lines
1.1 KiB
TypeScript

import { useRemake, useGoAchv } from '@remake/hooks'
import { TextSvg } from '@/components/TextSvg'
import { ThemeToggle } from '@/components/ThemeToggle'
import './Home.css'
export default function Home() {
const remake = useRemake()
const goAchv = useGoAchv()
return (
<div className="screen home">
<div className="title">
<TextSvg text="人生重开模拟器" className="main" />
<TextSvg text="这垃圾人生一秒也不想待了" className="sub" />
</div>
<div className="controls">
<div>
<button className="primary focus" onClick={remake}>
立即重开
</button>
</div>
<div>
<button className="secondary" onClick={goAchv}>
成就
</button>
<button className="secondary" onClick={goAchv}>
感谢
</button>
</div>
</div>
<ThemeToggle />
</div>
)
}