Emoji work
This commit is contained in:
@@ -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 />
|
||||
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user