This commit is contained in:
liuhanhua
2025-10-28 14:38:16 +08:00
parent 143327de89
commit 6cdc748f9e
20 changed files with 7525 additions and 29 deletions

15
src/pages/index.jsx Normal file
View File

@@ -0,0 +1,15 @@
import yayJpg from '../assets/yay.jpg';
export default function HomePage() {
return (
<div>
<h2>Yay! Welcome to umi!</h2>
<p>
<img src={yayJpg} width="388" />
</p>
<p>
To get started, edit <code>pages/index.tsx</code> and save to reload.
</p>
</div>
);
}