mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
26 lines
513 B
TypeScript
26 lines
513 B
TypeScript
// @ts-nocheck
|
|
import intl from 'react-intl-universal';
|
|
|
|
export const getFooterLinks = () => [
|
|
{
|
|
title: intl.get('blog'),
|
|
link: 'https://docs.bigcapital.ly/blog',
|
|
},
|
|
{
|
|
title: intl.get('community'),
|
|
link: 'https://discord.com/invite/c8nPBJafeb',
|
|
},
|
|
{
|
|
title: intl.get('support'),
|
|
link: 'https://discord.com/invite/c8nPBJafeb',
|
|
},
|
|
{
|
|
title: intl.get('docs'),
|
|
link: 'https://docs.bigcapital.ly',
|
|
},
|
|
{
|
|
title: 'Bigcapital',
|
|
link: 'http://bigcapital.ly',
|
|
},
|
|
];
|