-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathprofile.ts
44 lines (40 loc) · 1.08 KB
/
profile.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
import { faEnvelope, faPhone } from '@fortawesome/free-solid-svg-icons';
import { faFacebook, faGithub } from '@fortawesome/free-brands-svg-icons';
import { faBell } from '@fortawesome/free-regular-svg-icons';
import { IProfile } from '../component/profile/IProfile';
import image from '../asset/sample_tux.png';
const profile: IProfile.Payload = {
disable: false,
// image: 'https://resume.yowu.dev/static/image/profile_2019.png',
image,
name: {
title: 'Tux Linux Penguin',
small: '(Tux)',
},
contact: [
{
title: '[email protected]',
link: 'mailto:[email protected]',
icon: faEnvelope,
},
{
title: 'Please contact me by email',
icon: faPhone,
badge: true,
},
{
link: 'https://github.com/uyu423/resume-nextjs',
icon: faGithub,
},
{
link: 'https://www.facebook.com/groups/ubuntu.ko',
icon: faFacebook,
},
],
notice: {
title:
"The content below is all fictitious and is just a sample from 'https://github.com/uyu423/resume-nextjs'.",
icon: faBell,
},
};
export default profile;