Spaces:
Sleeping
Sleeping
File size: 404 Bytes
61c7e5b 1643ce8 61c7e5b 1643ce8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import { APP_VERSION } from "../lib/version";
type PageFooterProps = {
note?: string;
};
export function PageFooter({ note }: PageFooterProps) {
return (
<footer className="mt-12 text-center text-xs text-gray-500">
<p>Prosento - (c) 2026 All Rights Reserved</p>
{note ? <p className="mt-1">{note}</p> : null}
<p className="mt-1">Version {APP_VERSION}</p>
</footer>
);
}
|