Remove <html>, <head>, and <body> tags from your Layout component.
keep only React elements like this:
export function Layout() {
return (
<>
<NavBar />
<Outlet />
<Footer />
<ScrollRestoration />
<Scripts />
</>
);
}