add_filter( 'spacious_footer_copyright' );
function spacious_footer_copyright() {
echo 'Copyright © ';
echo date('Y');
echo ' · <a href="http://www.mywebsite.co.uk" title="Visit the web site">My Company</a> · Built by <a href="mailto:info@mydomain.co.uk" title="Send an email">Your Name</a>';
echo '';
}
Just add this to your functions.php file inside the child theme.