mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 17:04:15 +00:00
22 lines
498 B
TypeScript
22 lines
498 B
TypeScript
import { Container } from '@/components/container';
|
|
|
|
import styles from './donate.module.css';
|
|
|
|
export function Donate() {
|
|
return (
|
|
<Container>
|
|
<section className={styles.wrapper}>
|
|
<p className={styles.text}>
|
|
Enjoy Moodist?{' '}
|
|
<a
|
|
href="https://buymeacoffee.com/remvze"
|
|
rel="noreferrer"
|
|
target="_blank"
|
|
>
|
|
Support with a donation!
|
|
</a>
|
|
</p>
|
|
</section>
|
|
</Container>
|
|
);
|
|
}
|