-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconstants.js
40 lines (38 loc) · 1.4 KB
/
constants.js
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
const { FaGithub, FaTwitter, FaDiscord, FaPaypal, FaLinkedin } = require('react-icons/fa');
const { SiKofi } = require('react-icons/si');
const { IoMdMail } = require('react-icons/io');
const isServer = typeof window === "undefined";
const links = [
{
name: 'Github', url: 'https://github.com/amitojsingh366/', path: '/github',
description: 'Check out my GitHub profile', icon: FaGithub
},
{
name: 'LinkedIn', url: 'https://www.linkedin.com/in/amitojsingh366/', path: '/linkedin',
description: 'Connect with me on LinkedIn', icon: FaLinkedin
},
{
name: 'Twitter', url: 'https://twitter.com/amitojsingh366/', path: '/twitter',
description: 'Check out my Twitter profile', icon: FaTwitter
},
{
name: 'Discord', url: 'https://discord.com/users/473965680857972757', path: '/discord',
description: 'Contact me on Discord', icon: FaDiscord
},
{
name: 'E-Mail', url: 'mailto:[email protected]', path: '/mail',
description: 'Contact me via E-Mail', icon: IoMdMail
},
{
name: 'Ko-Fi', url: 'https://ko-fi.com/amitoj', path: '/kofi',
description: 'Buy me a coffee 💞', icon: SiKofi
},
{
name: 'Paypal', url: 'https://paypal.me/amitoj366', path: '/paypal',
description: 'Support me through PayPal 💞', icon: FaPaypal
},
];
module.exports = {
links,
isServer
};