Files
bigcapital/src/config/footerLinks.js
2021-09-21 17:13:53 +02:00

32 lines
494 B
JavaScript

import intl from 'react-intl-universal';
export const getFooterLinks = () => [
{
title: intl.get('blog'),
link: '#',
},
{
title: intl.get('support'),
link: '#',
},
{
title: intl.get('service_status'),
link: '#',
},
{
title: intl.get('pricing'),
link: '#',
},
{
title: intl.get('reseller_partner'),
link: '#',
},
{
title: intl.get('docs'),
link: '#',
},
{
title: 'Bigcapital',
link: 'http://bigcapital.ly',
}
]