pollo/app/_components/Footer.tsx
2023-11-16 21:23:51 -07:00

35 lines
933 B
TypeScript

"use client";
import { GiTechnoHeart } from "react-icons/gi";
import packagejson from "../../package.json";
const Footer = () => {
return (
<footer className="footer footer-center h-12 p-2 bg-base-100 text-base-content">
<div className="block">
Made with{" "}
<GiTechnoHeart className="inline-block text-primary text-lg animate-pulse" />{" "}
by{" "}
<a
className="link link-primary link-hover"
href="https://atri.dad"
rel="noreferrer"
target="_blank"
>
Atridad Lahiji
</a>{" "}
-{" "}
<a
className="link link-primary link-hover"
href={`https://github.com/atridadl/sprintpadawan/releases/tag/${packagejson.version}`}
rel="noreferrer"
target="_blank"
>
v{packagejson.version}
</a>
</div>
</footer>
);
};
export default Footer;