27 lines
No EOL
1.1 KiB
Text
27 lines
No EOL
1.1 KiB
Text
---
|
|
import Layout from "../layouts/Layout.astro";
|
|
|
|
import Card from "../components/Card.astro";
|
|
/* funny import/export conflict if we don't do this :( */
|
|
import ProjectsList from "../components/Projects.astro";
|
|
---
|
|
|
|
<Layout title="projects" description="a personal website for some computer nerd">
|
|
<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"
|
|
]
|
|
}
|
|
]}
|
|
/>
|
|
</Card>
|
|
</Layout> |