summaryrefslogtreecommitdiff
path: root/src/components/Commit.astro
diff options
context:
space:
mode:
authorJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-06-28 18:14:22 -0300
committerJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-06-28 18:14:22 -0300
commit79fd506d30eef3d113f4a8e3ab9ebd9004f1e8cc (patch)
tree96ff57c92e897c3cc3331e23043d20f1665c7d0a /src/components/Commit.astro
parenta1eac976b20e39f86d5944fbec68e2a0f8ffb746 (diff)
feat: index page
Signed-off-by: João Augusto Costa Branco Marado Torres <torres.dev@disroot.org>
Diffstat (limited to 'src/components/Commit.astro')
-rw-r--r--src/components/Commit.astro49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/components/Commit.astro b/src/components/Commit.astro
deleted file mode 100644
index 3ee284a..0000000
--- a/src/components/Commit.astro
+++ /dev/null
@@ -1,49 +0,0 @@
----
-import type { Commit } from "@lib/git/types";
-import { gitDir } from "@lib/git";
-
-type Props = Commit;
-
-const { hash, files, author, signature } = Astro.props;
-
-const git = await gitDir;
----
-<p>Git commit info:</p>
-<dl>
- <dt>Hash</dt>
- <dd>{hash}</dd>
- <dt>Files</dt>
- {files.map((file) => <dd>{file.pathname.replace(git, "")}</dd>)}
- <dt>Author</dt>
- <dd>{author.name} &lt;{author.email}&gt;</dd>
- {
- signature && (
- <dt>Commit Signature</dt>
- <dd>
- <dl>
- <dt>Type</dt>
- <dd>{signature.type}</dd>
- <dt>Signer</dt>
- <dd>{signature.signerName}</dd>
- <dt>Key fingerprint</dt>
- <dd>{signature.keyFingerPrint}</dd>
- </dl>
- </dd>
- )
- }
-</dl>
-
-<style>
- dl {
- display: grid;
- grid-template-columns: 1fr 1fr;
- }
-
- dl > dt, dd {
- display: inline-block;
- }
-
- dt::after {
- content: ": ";
- }
-</style>