forked from Hendrixer/production-grade-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.ts
65 lines (63 loc) · 1.68 KB
/
content.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
export const home = {
draft: {
hero: {
title: 'Hmm, need something clever here',
body: 'blah blah blah, our product is the best!',
},
features: [
{ title: 'Feature 1', body: 'something dope about feature 1 here soon.' },
{ title: 'Feature 2', body: 'something dope about feature 2 here soon.' },
],
},
published: {
hero: {
title: 'A beautiful knowledge base for your whole team.',
body: 'High performing teams use Known to document and record everything. Some other cool SaaS tag line here.',
},
features: [
{
title: 'Next gen editor',
body:
'Forget about markdown and rich text. Our editor is superchared to handle any content you can throug at it.',
},
{ title: 'Stay organized', body: 'Use folders to put your docs right where you need them when you need them.' },
{ title: 'Beautiful design', body: 'Award wining design that you will fall in love with.' },
],
},
}
export const posts = {
draft: [
`---
title: "We're hiring"
summary: 'Will come up with summary later'
slug: 'we-are-hiring'
publsihedOn: ''
---
## nice post, who dis
`,
`---
title: Why you should write down everything
summary: Will come up with summary later
slug: why-you-should-write-down-everything
publsihedOn: ''
---
## Writing is fun`,
],
published: [
`---
title: "We're hiring"
summary: Come work at a really nice company.
slug: we-are-hiring
publsihedOn: '12-03-2020'
---
## Come with with us
`,
`---
title: Why you should write down everything
summary: If you write it down, you won't forget.
slug: why-you-should-write-down-everything
publsihedOn: '3-20-2020'
---
## Elon musk writes`,
],
}