-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.ts
57 lines (56 loc) · 1.06 KB
/
data.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
export const footer_socialNetworks = [
{
name: 'LinkedIn',
icon: 'linkedin',
link: 'https://www.linkedin.com/in/nathsimpson'
},
{
name: 'Github',
icon: 'github',
link: 'https://github.com/nathsimpson'
},
{
name: 'Instagram',
icon: 'instagram',
link: 'https://www.instagram.com/nathansimpson.design'
},
// {
// name: 'Codepen',
// icon: faCodepen,
// link: 'https://codepen.io/nathansimpson/'
// },
{
name: 'Dribbble',
icon: 'dribbble',
link: 'https://dribbble.com/nathansimpson'
},
{
name: 'YouTube',
icon: 'youtube',
link: 'https://www.youtube.com/channel/UCa__hNMzVWIQOHErctX0leg'
},
// {
// name: 'Polywork',
// icon: 'polywork',
// link: 'https://www.polywork.com/nathsimpson'
// }
{
name: 'Twitter',
icon: 'twitter',
link: 'https://twitter.com/nathjsimpson'
}
] as const;
export const footer_navItems = [
{
url: '/',
label: 'Home'
},
{
url: '/about',
label: 'About'
},
{
url: '/blog',
label: 'Blog'
}
] as const;