blob: 3a228ca1e739bb0587802a7b7f2ac4e455cb99c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<script lang="ts">
interface Props {
source: string;
commitLink: string;
latestCommitHash: string;
}
let { source, commitLink, latestCommitHash }: Props = $props();
</script>
<footer>
Source Code: <a href={source} target="_blank">{source}</a>
<div>
Commit: <a href={commitLink} target="_blank">{latestCommitHash}</a>
</div>
</footer>
|