43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import React from 'react'
|
|
import Link from 'next/link'
|
|
import { SiDiscord, SiGithub, SiX } from 'react-icons/si'
|
|
import { Button } from '../ui-v2/button'
|
|
|
|
const Footer: React.FC = () => {
|
|
return (
|
|
<footer className="w-fit p-1 md:p-2 fixed bottom-0 right-0">
|
|
<div className="flex justify-end">
|
|
<Button
|
|
variant={'ghost'}
|
|
size={'icon'}
|
|
className="text-muted-foreground/50"
|
|
>
|
|
<Link href="https://discord.gg/zRxaseCuGq" target="_blank">
|
|
<SiDiscord size={18} />
|
|
</Link>
|
|
</Button>
|
|
<Button
|
|
variant={'ghost'}
|
|
size={'icon'}
|
|
className="text-muted-foreground/50"
|
|
>
|
|
<Link href="https://twitter.com/miiura" target="_blank">
|
|
<SiX size={18} />
|
|
</Link>
|
|
</Button>
|
|
<Button
|
|
variant={'ghost'}
|
|
size={'icon'}
|
|
className="text-muted-foreground/50"
|
|
>
|
|
<Link href="https://git.new/morphic" target="_blank">
|
|
<SiGithub size={18} />
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|
|
|
|
export default Footer
|