asi-calculator/components/Footer/Footer.tsx

32 lines
806 B
TypeScript
Raw Normal View History

import { repoUrl } from '@/constants'
2024-03-31 06:01:26 +02:00
import { GitHubLogoIcon } from '@radix-ui/react-icons'
import styles from './Footer.module.css'
export function Footer() {
return (
<footer className={styles.footer}>
2024-04-02 14:18:38 +02:00
<div>
<span>
Send and memecoins to{' '}
<a href="https://app.ens.domains/krema.eth">krema.eth</a>
</span>
2024-03-31 06:01:26 +02:00
2024-04-02 14:18:38 +02:00
<p className={styles.social}>
2024-04-06 15:35:49 +02:00
<a
className={styles.commitHash}
href={`${repoUrl}/commit/${process.env.GIT_COMMIT_SHA}`}
>
{process.env.GIT_COMMIT_SHA?.substring(0, 7)}
</a>
2024-04-02 14:18:38 +02:00
<a href={repoUrl}>
<GitHubLogoIcon />
</a>
</p>
</div>
2024-04-06 15:35:49 +02:00
<div style={{ textAlign: 'right' }}>
<p />
2024-04-06 15:35:49 +02:00
</div>
2024-03-31 06:01:26 +02:00
</footer>
)
}