How to remove footer from just homepage

You can copy the footer.php file to your child theme and add condition to not display on home page.

if (!is_home() || ! is_front_page()){
    // All the codes which are not supposed to display on the front page or home page
}