@worldresources/gfw-components
Version:
React component library for the Global Forest Watch project.
62 lines (60 loc) • 1.54 kB
JavaScript
import TwitterIcon from 'assets/icons/social/twitter.svg';
import FacebookIcon from 'assets/icons/social/facebook.svg';
import InstagramIcon from 'assets/icons/social/instagram.svg';
import YoutubeIcon from 'assets/icons/social/youtube.svg';
import LinkedinIcon from 'assets/icons/social/linkedin.svg';
export default {
links: [
{
label: 'Map',
link: 'https://www.globalforestwatch.org/map',
},
{
label: 'Dashboards',
link: 'https://www.globalforestwatch.org/dashboards',
},
{
label: 'Topics',
link: 'https://www.globalforestwatch.org/topics/biodiversity/',
},
{
label: 'Blog',
link: 'https://globalforestwatch.org/blog',
},
{
label: 'About',
link: 'https://www.globalforestwatch.org/about/',
},
{
label: 'Help',
link: 'https://www.globalforestwatch.org/help/',
},
],
socialLinks: [
{
label: 'linkedin',
link: 'https://www.linkedin.com/showcase/globalforestwatch/',
icon: LinkedinIcon,
},
{
label: 'twitter',
link: 'https://twitter.com/globalforests',
icon: TwitterIcon,
},
{
label: 'facebook',
link: 'https://www.facebook.com/globalforests/',
icon: FacebookIcon,
},
{
label: 'instagram',
link: 'https://www.instagram.com/globalforests/',
icon: InstagramIcon,
},
{
label: 'youtube',
link: 'https://www.youtube.com/channel/UCAsamYre1KLulf4FD-xJfLA',
icon: YoutubeIcon,
},
],
};