diff options
| author | Seth Flynn <[email protected]> | 2025-03-12 20:24:44 -0400 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-03-12 20:26:38 -0400 |
| commit | fcb65c74e1cfe39c0d79a3dfb62561e7e395eeec (patch) | |
| tree | c36807f7112af0a5b9eb9a93bcaa93b8c5b9727a | |
| parent | 42b9dec643b61213fe4afed9d1f4c81f65fe2075 (diff) | |
fix(footer): put commit sha line in same tag
| -rw-r--r-- | src/components/Footer.astro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 9995027..bf1235d 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -9,13 +9,13 @@ const repositoryUrl = "https://github.com/getchoo/website"; <p> { commitSha && ( - <p> + <> Site version <a href={`${repositoryUrl}/commit/${commitSha}`}> {commitSha.substring(0, 7)} </a> - . - </p> + <br /> + </> ) } Content is All Rights Reserved. |
