mirror of
https://github.com/LucasVbr/todo-list.git
synced 2026-05-13 17:22:04 +00:00
15 lines
464 B
TypeScript
15 lines
464 B
TypeScript
export default function Footer() {
|
|
return (
|
|
<footer className={"Footer footer sticky bottom-0 py-4"}>
|
|
<p className={"inline-block w-full text-center"}>
|
|
<span className={"badge badge-md"}>
|
|
MIT Licence © 2023 •
|
|
<a className={"link link-hover"} href={"https://github.com/LucasVbr/todo-list"} target={"_blank"}>
|
|
See code on GitHub
|
|
</a>
|
|
</span>
|
|
</p>
|
|
</footer>
|
|
)
|
|
}
|