Merge pull request #99 from vzhou842/html-lang

Add lang="en" to <html>
This commit is contained in:
Alexander Shelepenok 2019-02-10 09:54:12 +03:00 committed by GitHub
commit 7f6713044e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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>