comicbox/components/Footer.tsx

24 lines
688 B
TypeScript
Raw Normal View History

2022-07-27 21:10:23 +00:00
import { LinkButton } from './Button';
2022-07-27 20:56:32 +00:00
export default function Footer() {
2022-07-27 21:10:23 +00:00
return (
<footer className='w-full h-12 bg-gray-900 p-4 gap-1 shadow'>
<ul className='flex flex-row items-center dots-between'>
<li>
Created by{' '}
<LinkButton href='https://ashhhleyyy.dev'>
Ashhhleyyy
</LinkButton>
.
</li>
2022-07-27 20:56:32 +00:00
2022-07-27 21:10:23 +00:00
<li>Comics are Copyright (c) their original authors</li>
2022-07-27 20:56:32 +00:00
2022-07-27 21:10:23 +00:00
<li>
<LinkButton href='/about'>About</LinkButton>
</li>
</ul>
</footer>
);
2022-07-27 20:56:32 +00:00
}