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

View File

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