Skip to content

Commit a066972

Browse files
committed
save
1 parent 80af7f1 commit a066972

3 files changed

Lines changed: 0 additions & 4 deletions

File tree

src/_data/build.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@ const { execSync } = require("child_process");
33
module.exports = () => {
44
const now = new Date();
55

6-
// Format the date: "Jan 26, 2026, 07:51 AM"
76
const timestamp = now.toLocaleString("en-US", {
87
dateStyle: "medium",
98
timeStyle: "short",
109
});
1110

1211
let gitHash = "development";
1312
try {
14-
// Get the short git hash (first 7 characters)
1513
gitHash = execSync("git rev-parse --short HEAD").toString().trim();
1614
} catch (e) {
1715
console.warn("Could not fetch git hash, defaulting to 'development'");

src/_includes/bio.njk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@
9898
{% include "footer.njk" %}
9999

100100
<script>
101-
// Specific helper for the bio page email copy
102101
function copyToClipboard(text, el) {
103102
navigator.clipboard.writeText(text);
104103
const span = el.querySelector('span:last-child');

src/index.njk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ layout: false
1616

1717
<main class="max-w-7xl mx-auto px-4 py-12">
1818
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
19-
{# We use collections.developer (or whichever tag you use in your .md files) #}
2019
{% for person in collections.randomPeople %}
2120
<div class="user-card group bg-[var(--bg-card)] border border-[var(--border-color)] rounded-2xl overflow-hidden flex flex-col scroll-mt-32 transition-all hover:shadow-2xl hover:-translate-y-1">
2221
<div class="p-8">

0 commit comments

Comments
 (0)