forked from misterGF/CoPilot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.js
More file actions
69 lines (66 loc) · 1.7 KB
/
Copy pathdemo.js
File metadata and controls
69 lines (66 loc) · 1.7 KB
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
66
67
68
69
import moment from 'moment'
export const servers = [{
name: 'www01',
status: 'success',
icon: 'globe',
description: 'Web server that runs our sites'
}, {
name: 'sql01',
status: 'danger',
icon: 'database',
description: 'mySQL server used for reporting'
}, {
name: 'mongoDB01',
status: 'info',
icon: 'file-code-o',
description: 'Main DB server'
}, {
name: 'ldap01',
status: 'success',
icon: 'key',
description: 'Authentication server'
}, {
name: 'mgmt01',
status: 'success',
icon: 'home',
description: 'Management server with all tools'
}, {
name: 'bkup01',
status: 'warning',
icon: 'backward',
description: 'Backup server'
}]
export const stats = [{
header: '8390',
text: 'Visitors'
}, {
header: '30%',
text: 'Referrals'
}, {
header: '70%',
text: 'Organic'
}]
export const timeline = [{
icon: 'fa-envelope',
color: 'blue',
title: 'Write short novel',
time: moment().endOf('day').fromNow(),
body: 'Etsy doostang zoodles disqus groupon greplin oooj voxy zoodles, weebly ning heekya handango imeem plugg dopplr jibjab, movity jajah plickers sifteo edmodo ifttt zimbra. Babblely odeo kaboodle quora plaxo ideeli hulu weebly balihoo...',
buttons: [{
type: 'primary',
message: 'Read more'
}]
},
{
icon: 'fa-user',
color: 'yellow',
title: 'Sarah Young accepted your friend request',
time: moment('20150620', 'MMM Do YY').fromNow()
},
{
icon: 'fa-camera',
color: 'purple',
title: 'Watch a youTube video',
time: moment('20130620', 'YYYYMMDD').fromNow(),
body: '<div class="embed-responsive embed-responsive-16by9"><iframe width="560" height="315" src="https://www.youtube.com/embed/8aGhZQkoFbQ" frameborder="0" allowfullscreen></iframe></div>'
}]