\documentclass[tikz, border=1cm]{standalone}
\usetikzlibrary{hobby, decorations.markings, arrows.meta}
\begin{document}
\begin{tikzpicture}[use Hobby shortcut]
\newcommand{\curve}{(-2,-1) .. (1,-2) .. (2,2) .. (0,1)}
\draw[
closed,
decoration={
markings,
mark=at position 0.2 with {\draw[red, thick, -Stealth] (0,0) -- (0.6,0); \draw[thick, -Stealth] (0,0) -- (0,0.6);},
mark=at position 0.3 with {\draw[red, thick, -Stealth] (0,0) -- (0.6,0); \draw[thick, -Stealth] (0,0) -- (0,0.6);},
mark=at position 0.7 with {\draw[red, thick, -Stealth] (0,0) -- (0.6,0); \draw[thick, -Stealth] (0,0) -- (0,0.6);},
},
postaction={decorate},
] \curve;
\draw[closed, scale=0.8] \curve;
\draw[closed, scale=0.6] \curve;
\draw[closed, scale=0.4] \curve;
\end{tikzpicture}
\end{document}