mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
- Remove links to demo and docs website from README
- Remove most links across the codebase referring to docs.astuto.io and astuto.io
Goodbye, Astuto 🥲
12 lines
282 B
TypeScript
12 lines
282 B
TypeScript
import * as React from 'react';
|
|
import I18n from 'i18n-js';
|
|
|
|
const PoweredByLink = () => (
|
|
<div className="poweredBy">
|
|
<a href="https://github.com/astuto/astuto/" target="_blank">
|
|
{ I18n.t('common.powered_by') } Astuto
|
|
</a>
|
|
</div>
|
|
);
|
|
|
|
export default PoweredByLink; |