Source: components/Footer.js

import React from 'react';

/**
 * web footer with information
 * @param props props
 */
function Footer(props) {
    return (
        <footer className="d-flex justify-content-center align-items-center w-100">
            <strong>CTS</strong>
            <span>&nbsp;©Pavel Čácha</span>
        </footer>
    );
}

export default Footer;