diff --git a/src/components/Active.astro b/src/components/Active.astro new file mode 100644 index 00000000..5a05018a --- /dev/null +++ b/src/components/Active.astro @@ -0,0 +1,51 @@ +--- +const items = [ + { + label: "studying", + title: "comptia network+", + meta: "ch. 7 · ipv6 addressing", + progress: 0.62, + progressText: "62%", + }, + { + label: "shipping", + title: "portfolio site v2", + meta: "astro 5 · gitea actions ci · dmz lxc", + }, + { + label: "maintaining", + title: "32 services across 4 vlans", + meta: "last alert 11d ago · backups green", + }, +]; +--- + +
+
+ active + updated 4m ago +
+ +
+ {items.map((it, i) => ( +
+
+ {it.label} + {it.progress != null && ( + {it.progressText} + )} +
+
{it.title}
+
{it.meta}
+ {it.progress != null && ( +
+
+
+ )} +
+ ))} +
+
diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 0307d475..02b69106 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -2,46 +2,38 @@ const year = new Date().getFullYear(); --- -