summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-03-12 20:24:44 -0400
committerSeth Flynn <[email protected]>2025-03-12 20:26:38 -0400
commitfcb65c74e1cfe39c0d79a3dfb62561e7e395eeec (patch)
treec36807f7112af0a5b9eb9a93bcaa93b8c5b9727a /src/components
parent42b9dec643b61213fe4afed9d1f4c81f65fe2075 (diff)
fix(footer): put commit sha line in same tag
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Footer.astro6
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.