Merge pull request #395 from jorilallo/issue-373
Added social / meta tags to public pages
This commit is contained in:
BIN
public/favicon-16.png
Normal file
BIN
public/favicon-16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 325 B |
BIN
public/favicon-32.png
Normal file
BIN
public/favicon-32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 368 B |
@@ -4,6 +4,7 @@ import { Helmet } from 'react-helmet';
|
|||||||
import Navigation from './Navigation';
|
import Navigation from './Navigation';
|
||||||
import Analytics from '../../../shared/components/Analytics';
|
import Analytics from '../../../shared/components/Analytics';
|
||||||
import globalStyles from '../../../shared/styles/globals';
|
import globalStyles from '../../../shared/styles/globals';
|
||||||
|
import { color } from '../../../shared/styles/constants';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
children?: React$Element<*>,
|
children?: React$Element<*>,
|
||||||
@@ -17,7 +18,29 @@ export default function Layout({ children }: Props) {
|
|||||||
<head>
|
<head>
|
||||||
<Helmet>
|
<Helmet>
|
||||||
<title>Outline</title>
|
<title>Outline</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<meta name="referrer" content="origin" />
|
||||||
|
<meta name="description" content="Your team’s knowledge base" />
|
||||||
|
<meta name="og:site_name" content="Outline" />
|
||||||
|
<meta name="og:type" content="website" />
|
||||||
|
<meta name="theme-color" content={color.primary} />
|
||||||
|
<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"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="dns-prefetch"
|
||||||
|
href={process.env.AWS_S3_UPLOAD_BUCKET_URL}
|
||||||
|
/>
|
||||||
</Helmet>
|
</Helmet>
|
||||||
<Analytics />
|
<Analytics />
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user