I’m not sure if you want to add link to your social media profile or you want to add social sharing buttons. I assume you want to add your twitter/facebook links to post footer on each page. If you are familiar with child theme and php, try this,
function mgraphene_custom_social_media_buttons {
echo '<div>
<a href="http://twitter.com/username"><img src="http://twitter.icon.png" /></a>
<span> | </span>
<a href="http://facebook.com/username"><img src="http://facebook.icon.png" /></a>
</div>';
}
add_action('mgraphene_loop_tags_before', 'mgraphene_custom_social_media_buttons');
Replace username
with your twitter username and http://twitter.icon.png
with twitter icon URL. If you want to have text instead of image, replace <img src="http://twitter.icon.png" />
with plain twitter
or my tweets
. Do the same for facebook.