summaryrefslogtreecommitdiff
path: root/src/components/Footer.astro
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-03-12 20:08:01 -0400
committerSeth Flynn <[email protected]>2025-03-12 20:26:38 -0400
commit898f1b95c7200a321eb686738e06283fc224959a (patch)
tree9249459856535e29d17d563a608b09ccf2344d02 /src/components/Footer.astro
parente418edcd965f3a74522adc37b6cc3db11d0ce8f7 (diff)
feat: use tailwind and daisyui
Diffstat (limited to 'src/components/Footer.astro')
-rw-r--r--src/components/Footer.astro39
1 files changed, 21 insertions, 18 deletions
diff --git a/src/components/Footer.astro b/src/components/Footer.astro
index 1eaed7e..9995027 100644
--- a/src/components/Footer.astro
+++ b/src/components/Footer.astro
@@ -4,22 +4,25 @@ const commitSha =
const repositoryUrl = "https://github.com/getchoo/website";
---
-<footer>
- {
- commitSha && (
- <p>
- Site version
- <a href={`${repositoryUrl}/commit/${commitSha}`}>
- {commitSha.substring(0, 7)}
- </a>
- .
- </p>
- )
- }
- <p>Content is All Rights Reserved.</p>
- <p>
- The <a href={repositoryUrl}>source code</a> is available under the <a
- href="https://spdx.org/licenses/MIT.html">MIT License</a
- >.
- </p>
+<footer class="footer footer-center footer-horizontal">
+ <aside>
+ <p>
+ {
+ commitSha && (
+ <p>
+ Site version
+ <a href={`${repositoryUrl}/commit/${commitSha}`}>
+ {commitSha.substring(0, 7)}
+ </a>
+ .
+ </p>
+ )
+ }
+ Content is All Rights Reserved.
+ <br />
+ The <a href={repositoryUrl}>source code</a> is available under the <a
+ href="https://spdx.org/licenses/MIT.html">MIT License</a
+ >.
+ </p>
+ </aside>
</footer>