Compare commits

..

No commits in common. "1d95025e7f1233dfdfca0657b2868652bdc162e2" and "f6ddce9290edbbae18e37909baa2db7e72985352" have entirely different histories.

View file

@ -30,18 +30,7 @@ export function Footer() {
</p>
<p className="mt-2">&copy; {new Date().getFullYear()} Cheating Chelsea Exposed. All Rights Reserved.</p>
<p className="mt-1 text-xs text-muted-foreground/50">
Build: {process.env.NEXT_PUBLIC_GIT_COMMIT ? (
<a
href={`https://git.deco.sh/signal-works/cheatingchelsea/commit/${process.env.NEXT_PUBLIC_GIT_COMMIT}`}
className="hover:underline"
target="_blank"
rel="noopener noreferrer"
>
{process.env.NEXT_PUBLIC_GIT_COMMIT}
</a>
) : (
'development'
)}
Build: {process.env.NEXT_PUBLIC_GIT_COMMIT || 'development'}
</p>
</div>
</footer>