Skip to content

Commit

Permalink
fix: Add missing title tag. (#261)
Browse files Browse the repository at this point in the history
  • Loading branch information
goloroden authored Jan 24, 2020
1 parent 637af5e commit c0813d5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions styleguide/layouts/Styleguide/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Head from 'next/head';
import { navigation } from '../../configuration/navigation';
import NextLink from 'next/link';
import { useRouter } from 'next/router';
Expand Down Expand Up @@ -67,6 +68,9 @@ const Styleguide: FunctionComponent = ({ children }): ReactElement => {
useNotifications={ true }
useDialogs={ true }
>
<Head>
<title>the native web UX</title>
</Head>
<div className={ classes.NavigationForDesktop }>
<Sidebar>
<NextLink href='/'>
Expand Down

0 comments on commit c0813d5

Please sign in to comment.