From ca90f4810a173d476facb0064cd5b10c6570cb35 Mon Sep 17 00:00:00 2001 From: seth Date: Thu, 18 May 2023 08:54:09 -0400 Subject: chore: fix styling for footer + move to components/ --- src/components/Footer.astro | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/components/Footer.astro (limited to 'src/components') diff --git a/src/components/Footer.astro b/src/components/Footer.astro new file mode 100644 index 0000000..5940aee --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,13 @@ +--- +import { execa } from "execa"; +import "@styles/global.sass"; + +const { stdout: gitCommit } = await execa("git", ["rev-parse", "HEAD"]); +--- + +
+
+ source +

commit: {gitCommit}

+
+
-- cgit v1.2.3