This commit is contained in:
tuna2134
2026-05-27 12:20:05 +09:00
parent e08b5c475c
commit 6c9d788095
3 changed files with 24 additions and 17 deletions

View File

@@ -0,0 +1,21 @@
import Image from "next/image";
export const Profile: React.FC = () => {
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>
);
};