Added more metatarsi + screenshot
This commit is contained in:
@ -6,6 +6,11 @@ import Analytics from '../../../shared/components/Analytics';
|
|||||||
import globalStyles from '../../../shared/styles/globals';
|
import globalStyles from '../../../shared/styles/globals';
|
||||||
import { color } from '../../../shared/styles/constants';
|
import { color } from '../../../shared/styles/constants';
|
||||||
|
|
||||||
|
export const title = 'Outline';
|
||||||
|
export const description =
|
||||||
|
'Your team’s knowledge base - Team wiki, documentation, playbooks, onboarding & more…';
|
||||||
|
export const screenshotUrl = 'https://www.getoutline.com/screenshot.png';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
children?: React$Element<*>,
|
children?: React$Element<*>,
|
||||||
};
|
};
|
||||||
@ -17,16 +22,25 @@ export default function Layout({ children }: Props) {
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<Helmet>
|
<Helmet>
|
||||||
<title>Outline</title>
|
<title>{title}</title>
|
||||||
<meta charset="utf-8" />
|
<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="referrer" content="origin" />
|
||||||
<meta
|
<meta name="description" content={description} />
|
||||||
name="description"
|
|
||||||
content="Your team’s knowledge base - Team wiki, documentation, playbooks, onboarding & more…"
|
<meta name="og:site_name" content={title} />
|
||||||
/>
|
|
||||||
<meta name="og:site_name" content="Outline" />
|
|
||||||
<meta name="og:type" content="website" />
|
<meta name="og:type" content="website" />
|
||||||
|
<meta property="og:title" content={title} />
|
||||||
|
<meta property="og:description" content={description} />
|
||||||
|
<meta property="og:image" content={screenshotUrl} />
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
|
<meta name="twitter:domain" value="getoutline.com" />
|
||||||
|
<meta name="twitter:title" value={title} />
|
||||||
|
<meta name="twitter:description" value={description} />
|
||||||
|
<meta name="twitter:image" content={screenshotUrl} />
|
||||||
|
<meta name="twitter:url" value="https://www.getoutline.com/" />
|
||||||
|
|
||||||
<meta name="theme-color" content={color.primary} />
|
<meta name="theme-color" content={color.primary} />
|
||||||
<link
|
<link
|
||||||
rel="shortcut icon"
|
rel="shortcut icon"
|
||||||
|
Reference in New Issue
Block a user