You can hide the footer widgets on any page using the Page Settings meta box in the right column. You could hide the bottom bar by adding to Custom CSS or Additional CSS:
.home .site-footer .bottom-bar {
display: none;
}
That’ll only work when this page is assigned as the home page because it relies on the body class home.