pollo/app/components/Footer.tsx

34 lines
908 B
TypeScript
Raw Permalink Normal View History

2023-11-21 16:05:53 -07:00
import { HeartIcon } from "lucide-react";
2023-09-24 23:49:24 -06:00
import packagejson from "../../package.json";
2023-04-20 04:20:00 -06:00
2023-08-08 22:36:43 -06:00
const Footer = () => {
2023-04-20 04:20:00 -06:00
return (
<footer className="footer footer-center h-12 p-2 bg-base-100 text-base-content">
2023-09-01 20:38:27 -06:00
<div className="block">
Made with{" "}
2023-11-21 16:05:53 -07:00
<HeartIcon className="inline-block text-primary text-lg animate-pulse" />{" "}
2023-09-01 20:38:27 -06:00
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"
2023-09-01 20:42:50 -06:00
href={`https://github.com/atridadl/sprintpadawan/releases/tag/${packagejson.version}`}
2023-09-01 20:38:27 -06:00
rel="noreferrer"
target="_blank"
>
v{packagejson.version}
</a>
2023-04-20 04:20:00 -06:00
</div>
</footer>
);
};
export default Footer;