44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import Link from "next/link";
|
|
import { useEffect, useState } from "react";
|
|
|
|
import { CALCOM_VERSION, COMPANY_NAME, IS_CALCOM, IS_SELF_HOSTED } from "@calcom/lib/constants";
|
|
|
|
// eslint-disable-next-line turbo/no-undeclared-env-vars
|
|
const vercelCommitHash = process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_SHA;
|
|
const commitHash = vercelCommitHash ? `-${vercelCommitHash.slice(0, 7)}` : "";
|
|
const CalComVersion = `v.${CALCOM_VERSION}-${!IS_SELF_HOSTED ? "h" : "sh"}`;
|
|
|
|
export default function Credits() {
|
|
const [hasMounted, setHasMounted] = useState(false);
|
|
|
|
useEffect(() => {
|
|
setHasMounted(true);
|
|
}, []);
|
|
|
|
return (
|
|
<small className="text-default mx-3 mb-2 mt-1 hidden text-[0.5rem] opacity-50 lg:block">
|
|
© {new Date().getFullYear()}{" "}
|
|
<Link href="https://go.cal.com/credits" target="_blank" className="hover:underline">
|
|
{COMPANY_NAME}
|
|
</Link>{" "}
|
|
{hasMounted && (
|
|
<>
|
|
<Link href="https://go.cal.com/releases" target="_blank" className="hover:underline">
|
|
{CalComVersion}
|
|
</Link>
|
|
{vercelCommitHash && IS_CALCOM ? (
|
|
<Link
|
|
href={`https://github.com/calcom/cal.com/commit/${vercelCommitHash}`}
|
|
target="_blank"
|
|
className="hover:underline">
|
|
{commitHash}
|
|
</Link>
|
|
) : (
|
|
commitHash
|
|
)}
|
|
</>
|
|
)}
|
|
</small>
|
|
);
|
|
}
|