This commit is contained in:
tuna2134
2026-05-26 12:59:00 +09:00
parent 4b91d2ea8a
commit 168df53f19
9 changed files with 27 additions and 9 deletions

View File

@@ -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;