diff --git a/blog/avatar.tsx b/blog/avatar.tsx index 9c2ea4d..7a27a80 100644 --- a/blog/avatar.tsx +++ b/blog/avatar.tsx @@ -1,3 +1,5 @@ +import Image from "next/image"; + type Props = { name: string; picture: string; @@ -6,7 +8,7 @@ type Props = { const Avatar = ({ name, picture }: Props) => { return (
- {name} + {name}
{name}
);