mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
* Remove roadmap header * Add hostname to poweredby url * Fix oauth button click style * Fix mailer astuto logo * Fix asset urls in public html files
12 lines
330 B
TypeScript
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; |