Uncode theme, create author page and author link under the blog

before making edits, please consider to create a child theme for your customization; https://developer.wordpress.org/themes/advanced-topics/child-themes/

to show a link to the author’s page (https://developer.wordpress.org/reference/functions/get_author_posts_url/), put this code into the loop of the blog or post template file below the blog post code (please contact the theme’s developer for help with where in what file of your theme exactly):

<a href="https://wordpress.stackexchange.com/questions/354908/<?php echo esc_url( get_author_posts_url( get_the_author_meta("ID' ) ) ); ?>" title="<?php echo esc_attr( get_the_author() ); ?>"><?php the_author(); ?></a>

if not exists, create a template file author.php in your (child) theme (https://developer.wordpress.org/themes/basics/template-hierarchy/#author-display), possibly starting with a copy of archive.php or index.php of your theme.

in that file, before the loop, add the code for the author bio:

<?php the_author_meta( 'description' ); ?>

for the profile picture you could use the gravatar (https://developer.wordpress.org/reference/functions/get_avatar/)