-
Notifications
You must be signed in to change notification settings - Fork 33
/
footer.component.ts
79 lines (74 loc) · 1.61 KB
/
footer.component.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import { Component } from '@angular/core';
import menu from '../header/menu';
/**
* Skycoin footer. To activate it, FooterConfig.useGenericFooter (in app.config.ts)
* must be false. Read the docs for more information.
*/
@Component({
selector: 'app-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.scss']
})
export class FooterComponent {
/**
* Data for building the contact icon list.
*/
links = [
/*
{
href: 'https://medium.com/@Skycoinproject',
img: 'medium.svg',
},
{
href: 'https://twitter.com/skycoinproject',
img: 'twitter.svg',
},
{
href: 'https://www.facebook.com/SkycoinOfficial',
img: 'facebook.svg',
},
{
href: 'https://www.instagram.com/skycoinproject/',
img: 'instagram.svg',
},
*/
{
href: 'https://github.com/skycoin/skycoin',
img: 'github.svg',
},
/*
{
href: 'https://www.youtube.com/c/Skycoin',
img: 'youtube.svg',
},
{
href: 'https://www.reddit.com/r/skycoin',
img: 'reddit.svg',
},
{
href: 'https://itunes.apple.com/nl/podcast/skycoin/id1348472259?l=en',
img: 'apple.svg',
},
{
href: 'https://discord.gg/EgBenrW',
img: 'discord.svg',
},
*/
{
href: 'https://t.me/Skycoin',
img: 'telegram.svg',
},
/*
{
href: 'https://www.linkedin.com/company/skycoin/',
img: 'linkedin.svg',
}
*/
];
/**
* Returns the data for building the navigation menu.
*/
getMenu() {
return menu;
}
}