Files
astuto/app/javascript/components/common/PoweredByLink.tsx
Riccardo Graziosi 9176b96167 Update README and remove old links (#481)
- 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 🥲
2025-10-31 15:20:05 +01:00

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;