Emoji work

This commit is contained in:
Tom Moor
2018-06-09 17:17:40 -07:00
parent b929fb2bd3
commit a95b7fc4b6
3 changed files with 40 additions and 14 deletions

View File

@@ -81,18 +81,6 @@ class Layout extends React.Component<Props> {
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<link
rel="shortcut icon"
type="image/png"
href="/favicon-16.png"
sizes="16x16"
/>
<link
rel="shortcut icon"
type="image/png"
href="/favicon-32.png"
sizes="32x32"
/>
</Helmet>
<Analytics />

View File

@@ -4,11 +4,18 @@ import { Helmet } from 'react-helmet';
type Props = {
title: string,
favicon?: string,
};
const PageTitle = ({ title }: Props) => (
const PageTitle = ({ title, favicon }: Props) => (
<Helmet>
<title>{`${title} - Outline`}</title>
<link
rel="shortcut icon"
type="image/png"
href={favicon || '/favicon-32.png'}
sizes="32x32"
/>
</Helmet>
);