Files
astuto/app/javascript/components/common/PoweredByLink.tsx
Riccardo Graziosi 1cdbbc91e8 Various improvements and fixes (#309)
* Remove roadmap header
* Add hostname to poweredby url
* Fix oauth button click style
* Fix mailer astuto logo
* Fix asset urls in public html files
2024-03-14 23:04:34 +01:00

12 lines
330 B
TypeScript

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">
{ I18n.t('common.powered_by') } Astuto
</a>
</div>
);
export default PoweredByLink;