mirror of
https://github.com/tuna2134/cecilia.git
synced 2026-07-27 07:31:33 +00:00
fix
This commit is contained in:
@@ -1,8 +1,27 @@
|
||||
import Image from "next/image";
|
||||
import { NextPage } from "next";
|
||||
import Image from "next/image";
|
||||
|
||||
const Home: NextPage = () => {
|
||||
return <p>hello</p>;
|
||||
return (
|
||||
<>
|
||||
<div className="w-full flex items-center gap-4 py-8">
|
||||
<Image
|
||||
src="/images/icon.png"
|
||||
alt="icon"
|
||||
width={128}
|
||||
height={128}
|
||||
className="rounded-full"
|
||||
/>
|
||||
<div>
|
||||
<h2 className="text-2xl font-bold">こんにちは!</h2>
|
||||
<p>
|
||||
はじめまして、tuna2134です。サーバーをいじったりするのが楽しいと思っている人間です!
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<p>hello</p>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Home;
|
||||
|
||||
Reference in New Issue
Block a user