asi-calculator/components/Footer/Footer.tsx

30 lines
743 B
TypeScript
Raw Normal View History

2024-03-31 06:01:26 +02:00
import { GitHubLogoIcon } from '@radix-ui/react-icons'
import styles from './Footer.module.css'
2024-04-02 14:18:38 +02:00
import { repoUrl } from '@/constants'
2024-03-31 06:01:26 +02:00
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}>
<a href={repoUrl}>
<GitHubLogoIcon />
</a>
</p>
</div>
2024-04-02 15:19:59 +02:00
{/* <div>
2024-04-02 14:18:38 +02:00
<p>
<a href={`${repoUrl}/commit/${process.env.VERCEL_GIT_COMMIT_SHA}`}>
{process.env.VERCEL_GIT_COMMIT_SHA?.substring(0, 7)}
</a>
</p>
2024-04-02 15:19:59 +02:00
</div> */}
2024-03-31 06:01:26 +02:00
</footer>
)
}