Copyright year at the bottom

Hey guys.

First of all, thank you for your amazing templates. They totally rock.

I’m posting because I have a small suggestion.

Right now, you have the link to colorlib preceded by
Copyright &copy;<script>document.write(new Date().getFullYear());</script> All rights reserved

You know, document.write is discouraged by Chrome and might result in a SEO punishment
https://developers.google.com/web/updates/2016/08/removing-document-write
So perhaps you could replace it to write the html as

Copyright &copy;<span id="copyrightyear"></span> All rights reserved

And then, before closing the <body> tag:

<script>
document.querySelector('#copyrightyear').appendChild(document.createTextNode((new Date().getFullYear())));
</script>

Just my 2 cents.

Hi there

Hope you are having a good day and thank you for your question :slight_smile:
Thank you for the suggestion, I will send this to our developer
Thanks!
Colorlib Support Team