28 lines
812 B
TypeScript
28 lines
812 B
TypeScript
import { IconBrandGithub } from "@tabler/icons-react";
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer className="footer text-base-content mx-1 mt-4 w-auto grid-flow-col items-center justify-between p-4 md:mx-16 lg:mx-40">
|
|
<div className="items-center">
|
|
<p>
|
|
© 2023{" "}
|
|
<a href="https://nize.ph" target="_blank" rel="noreferrer" className="link-hover">
|
|
nize
|
|
</a>
|
|
</p>
|
|
</div>
|
|
<div className="items-center">
|
|
<a
|
|
href="https://github.com/nizewn/chessu"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
className="btn btn-ghost btn-sm gap-1 normal-case"
|
|
>
|
|
<IconBrandGithub className="inline-block" size={16} />
|
|
GitHub
|
|
</a>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|