"minor" changes

This commit is contained in:
skidoodle 2023-09-18 19:20:20 +02:00
parent f858856b5e
commit ac0a47faf2
4 changed files with 111 additions and 131 deletions

28
src/components/Footer.tsx Normal file
View file

@ -0,0 +1,28 @@
import React from 'react'
import Link from 'next/link'
const Footer: React.FC = () => {
return (
<div className="fixed bottom-0 py-4 left-0 right-0 text-center">
<p className="text-sm text-gray-400">
<Link
href="https://albert.lol"
target="_blank"
className="text-blue-500 hover:text-blue-700"
>
albert
</Link>
{' | '}
<Link
href="https://github.com/skidoodle/erettsegi-browser"
target="_blank"
className="text-blue-500 hover:text-blue-700"
>
github
</Link>
</p>
</div>
)
}
export default Footer