move components to separate folder
This commit is contained in:
27
client/src/components/Footer.tsx
Normal file
27
client/src/components/Footer.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user