diff --git a/components/usergroup/joinAsPresenter.tsx b/components/usergroup/joinAsPresenter.tsx index 880e72aed6..e65b5559d0 100644 --- a/components/usergroup/joinAsPresenter.tsx +++ b/components/usergroup/joinAsPresenter.tsx @@ -1,20 +1,35 @@ +import Image from "next/image"; import { Template } from "tinacms"; import { tinaField } from "tinacms/dist/react"; const Avatar = ({ img }) => { return ( -
- - +
+ + - + - {img ? ( - - ) : null} + + {img && ( + Picture of Presenter + )}
); };