pollo/app/components/Footer.tsx

34 lines
900 B
TypeScript
Raw Permalink Normal View History

2023-04-20 04:20:00 -06:00
import { HeartIcon } from "lucide-react";
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{" "}
<HeartIcon 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"
2024-04-09 11:09:51 -06:00
href={`https://github.com/atridadl/pollo/releases/tag/${packagejson.version}`}
2023-04-20 04:20:00 -06:00
rel="noreferrer"
target="_blank"
>
v{packagejson.version}
</a>
</div>
</footer>
);
};
export default Footer;