mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 17:33:18 +01:00
20 lines
489 B
TypeScript
20 lines
489 B
TypeScript
import { GitHubLogoIcon } from '@radix-ui/react-icons'
|
||
import styles from './Footer.module.css'
|
||
|
||
export function Footer() {
|
||
return (
|
||
<footer className={styles.footer}>
|
||
<span>
|
||
Send ❤️ and memecoins to{' '}
|
||
<a href="https://app.ens.domains/krema.eth">krema.eth</a>
|
||
</span>
|
||
|
||
<div className={styles.social}>
|
||
<a href="https://github.com/kremalicious/asi-calculator">
|
||
<GitHubLogoIcon />
|
||
</a>
|
||
</div>
|
||
</footer>
|
||
)
|
||
}
|