Add lang="en" to <html>

This commit is contained in:
Victor Zhou 2019-02-09 17:50:54 -05:00
parent d31e82a2f9
commit 5d2fbb3f58

View File

@ -5,6 +5,7 @@ import styles from './Layout.module.scss';
const Layout = ({ children, title, description }) => (
<div className={styles.layout}>
<Helmet>
<html lang="en" />
<title>{title}</title>
<meta name="description" content={description} />
</Helmet>