forked from dailydotdev/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commentPopupText.ts
33 lines (32 loc) · 1009 Bytes
/
commentPopupText.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
const texts = [
{
title: 'Discussing this post with the community is fun!',
placeholder: 'Write your thoughts to start a discussion.',
},
{
title: 'daily.dev is much better with friends!',
placeholder: 'Start a new discussion on this post.',
},
{
title: 'Want to have fun and learn new things with other devs?',
placeholder:
'Write down your thoughts about this post and start a discussion.',
},
{
title: 'How about summarizing this post for other busy developers?',
placeholder: 'Write your TL;DR to start a discussion.',
},
{
title: 'What do you think about this article?',
placeholder: 'Start a new discussion with the community.',
},
{
title: 'Did this article teach you something new?',
placeholder: 'Write it and share it with the community.',
},
{
title: 'Other devs in our community would love to hear your thoughts!',
placeholder: 'Write down a comment to kick off a discussion.',
},
];
export default texts;