To remove footer from Obsidian Publish site you can should use custom CSS:
.site-footer {
display: none;
}
or with using CSS variables:
.published-container {
--footer-display: none;
}
You are also able to overwrite default text:
.site-footer::after {
content: 'your custom text';
}