asi-calculator/components/Footer/Footer.tsx
Matthias Kretschmann 51143f5980
migrate to biome (#28)
* migrate to biome

* get biome config from @kremalicious/config
2024-07-26 13:16:59 +01:00

32 lines
806 B
TypeScript
Raw Permalink 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 { repoUrl } from '@/constants'
import { GitHubLogoIcon } from '@radix-ui/react-icons'
import styles from './Footer.module.css'
export function Footer() {
return (
<footer className={styles.footer}>
<div>
<span>
Send and memecoins to{' '}
<a href="https://app.ens.domains/krema.eth">krema.eth</a>
</span>
<p className={styles.social}>
<a
className={styles.commitHash}
href={`${repoUrl}/commit/${process.env.GIT_COMMIT_SHA}`}
>
{process.env.GIT_COMMIT_SHA?.substring(0, 7)}
</a>
<a href={repoUrl}>
<GitHubLogoIcon />
</a>
</p>
</div>
<div style={{ textAlign: 'right' }}>
<p />
</div>
</footer>
)
}