forked from karanpratapsingh/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.ts
29 lines (27 loc) · 775 Bytes
/
contact.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
export enum ContactType {
github = 'github',
linkedin = 'linkedin',
twitter = 'twitter',
youtube = 'youtube',
email = 'email',
buymeacoffee = 'buymeacoffee',
}
export interface Contact {
twitter: string;
site: string;
calendly?: string;
links: Record<ContactType, string>;
}
export const contact: Contact = {
twitter: '@karan_6864',
site: 'karanpratapsingh.com',
calendly: 'https://calendly.com/karanpratapsingh',
links: {
github: 'https://github.com/karanpratapsingh',
linkedin: 'https://linkedin.com/in/karan99',
twitter: 'https://twitter.com/karan_6864',
youtube: 'https://www.youtube.com/c/KaranPratapSingh',
email: 'mailto:contact@karanpratapsingh.com',
buymeacoffee: 'https://www.buymeacoffee.com/karanps',
},
};