content collections for badges and projects

This commit is contained in:
Reid 2024-09-18 17:13:15 -07:00
parent b09fe1b8bf
commit 49562a82a4
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
28 changed files with 131 additions and 61 deletions

View file

@ -2,7 +2,8 @@
import Layout from "../layouts/Layout.astro";
import Card from "../components/Card.astro";
/* funny import/export conflict if we don't do this :( */
// funny import/export conflict if we don't do this :(
// unfortunate...
import ProjectsList from "../components/Projects.astro";
---
@ -10,26 +11,6 @@ import ProjectsList from "../components/Projects.astro";
<Card title="projects">
<p>unfortunately, at the moment, i don't have too much interesting things for you to see. eventually when i get my shit together, you'll see more and more things appear on here</p>
<p>as always, my socials and contacts are on the left or top side of the screen for you to access if you wanna poke around in my git repositories</p>
<ProjectsList
projects={[
{
name: "reidlab.pink",
description: "this website!",
date: new Date(2024, 6, 14),
links: [
"https://reidlab.pink",
"https://git.reidlab.pink/reidlab/website"
]
},
{
name: "lastfmpris",
description: "a rust application to scrobble your currently playing song on last.fm with mpris",
date: new Date(2024, 7, 22),
links: [
"https://git.reidlab.pink/reidlab/lastfmpris"
]
}
]}
/>
<ProjectsList/>
</Card>
</Layout>