Static meta export

πŸ‘¨β€πŸ’Ό Have you gotten a look at the browser tab for our app? It looks like nonsense! Let's at least add a nice title. Also, we should probably set a couple other configuration bits of metadata as well.
πŸ’° Note, we're not going to use the Remix <Meta /> component yet. We're just rendering things directly in the <head> for now.
Here's a syntax reminder if you need
<title>My Page</title>
<meta name="description" content="This is my page" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charSet="utf-8" />