Adding content pages [wip]

This commit is contained in:
Tom Moor
2018-12-20 07:19:05 -08:00
parent 3a9a5f5ed3
commit 6ebb652481
31 changed files with 322 additions and 19 deletions

View File

@@ -2,6 +2,11 @@
import theme from './theme';
export default `
@font-face {
font-family: 'Lato';
src: url('/fonts/LatoLatin-Semibold.woff') format('woff');
}
* {
box-sizing: border-box;
}
@@ -46,6 +51,7 @@ export default `
h4,
h5,
h6 {
font-family: 'Lato', -apple-system, BlinkMacSystemFont;
font-weight: 500;
line-height: 1.25;
margin-top: 1em;

View File

@@ -73,6 +73,10 @@ export function about(): string {
return `${process.env.URL}/about`;
}
export function integrations(): string {
return `${process.env.URL}/integrations`;
}
export function privacy(): string {
return `${process.env.URL}/privacy`;
}