asi-calculator/components/Footer/Footer.tsx

19 lines
443 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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="">krema.eth</a>
</span>
<div className={styles.social}>
<a href="https://github.com/kremalicious/asi-calculator">
<GitHubLogoIcon />
</a>
</div>
</footer>
)
}