pollo/src/app/_components/Footer.tsx

38 lines
983 B
TypeScript
Raw Normal View History

2023-08-27 23:57:17 -06:00
"use client";
2023-04-20 04:20:00 -06:00
import { GiTechnoHeart } from "react-icons/gi";
2023-08-27 23:57:17 -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-04-20 04:20:00 -06:00
<div>
<p>
2023-08-08 22:36:43 -06:00
Made with{" "}
<GiTechnoHeart className="inline-block text-primary text-lg animate-pulse" />{" "}
by{" "}
2023-04-20 04:20:00 -06:00
<a
className="link link-primary link-hover"
href="https://atri.dad"
2023-04-20 04:20:00 -06:00
rel="noreferrer"
target="_blank"
>
Atridad Lahiji
2023-08-08 22:36:43 -06:00
</a>{" "}
-{" "}
2023-04-20 04:20:00 -06:00
<a
className="link link-primary link-hover"
2023-08-08 22:36:43 -06:00
href={`https://github.com/atridadl/sprintpadawan/releases/tag/${packagejson.version}`}
2023-04-20 04:20:00 -06:00
rel="noreferrer"
target="_blank"
>
2023-08-08 22:36:43 -06:00
v{packagejson.version}
2023-04-20 04:20:00 -06:00
</a>
</p>
</div>
</footer>
);
};
export default Footer;