All in 1 big commit :)... Do as I say... not as I do (in my private stuff anyway)
78 lines
1.6 KiB
TypeScript
78 lines
1.6 KiB
TypeScript
import {
|
|
blogger,
|
|
bwblogger,
|
|
bwfacebook,
|
|
bwgithub,
|
|
bwgoogleplus,
|
|
bwlinkedin,
|
|
bwrss,
|
|
bwtwitter,
|
|
bwyoutube2,
|
|
facebook,
|
|
github,
|
|
googleplus,
|
|
linkedin,
|
|
rss,
|
|
twitter,
|
|
youtube2,
|
|
} from "./../images/contact/index";
|
|
|
|
export default [
|
|
{
|
|
service: "youtube",
|
|
text: "YouTube - Rick van Lieshout",
|
|
url: "https://www.youtube.com/channel/UCjDWcnCf8nM2tzBbwxy5dhg",
|
|
icon: youtube2,
|
|
grayIcon: bwyoutube2,
|
|
},
|
|
{
|
|
service: "Google Plus",
|
|
text: "Google+ - rickvanlieshoutt",
|
|
url: "https://plus.google.com/+RickvanLieshoutt/posts",
|
|
icon: googleplus,
|
|
grayIcon: bwgoogleplus,
|
|
},
|
|
{
|
|
service: "Facebook",
|
|
text: "Facebook - misofttechnologies",
|
|
url: "https://www.facebook.com/rickvanlieshoutt",
|
|
icon: facebook,
|
|
grayIcon: bwfacebook,
|
|
},
|
|
{
|
|
service: "Github",
|
|
text: "Github - mastermindzh",
|
|
url: "https://github.com/mastermindzh",
|
|
icon: github,
|
|
grayIcon: bwgithub,
|
|
},
|
|
{
|
|
service: "Twitter",
|
|
text: "Twitter - Mastermindzh",
|
|
url: "https://twitter.com/mastermindzh",
|
|
icon: twitter,
|
|
grayIcon: bwtwitter,
|
|
},
|
|
{
|
|
service: "Linkedin",
|
|
text: "Linkedin - Rick van Lieshout",
|
|
url: "https://www.linkedin.com/in/rickvanlieshout/",
|
|
icon: linkedin,
|
|
grayIcon: bwlinkedin,
|
|
},
|
|
{
|
|
service: "My blog",
|
|
text: "Blogger - mastermindzh",
|
|
url: "https://rickvanlieshout.com/blogs",
|
|
icon: blogger,
|
|
grayIcon: bwblogger,
|
|
},
|
|
{
|
|
service: "My blog's rss feed",
|
|
text: "RSS - blog",
|
|
url: "https://rickvanlieshout.com/rss",
|
|
icon: rss,
|
|
grayIcon: bwrss,
|
|
},
|
|
];
|