Files
astuto/app/javascript/components/common/PoweredByLink.tsx

12 lines
330 B
TypeScript
Raw Normal View History

2024-02-27 18:32:14 +01:00
import * as React from 'react';
import I18n from 'i18n-js';
const PoweredByLink = () => (
<div className="poweredBy">
<a href={`http://astuto.io/?utm_campaign=poweredby&utm_source=${window.location.hostname}`} target="_blank">
2024-02-27 18:32:14 +01:00
{ I18n.t('common.powered_by') } Astuto
</a>
</div>
);
export default PoweredByLink;