Hello
As a template option, it is not currently available however you can remove it with some JS. To amend try adding the following to the
Head Custom Code field of your templates parameters (Extensions -> Template Manager -> YourTemplate -> Custom Code -> Head Custom Code)...
<script>
document.addEventListener("DOMContentLoaded", function() {
const logoLink = document.querySelector(".logo a");
logoLink.removeAttribute("href");
});
</script>
Ciaran