mizu + wiskatron

This commit is contained in:
Oliver Bryan
2025-09-26 13:43:13 +01:00
parent a4a92d7857
commit 905c9a8f6a
4 changed files with 61 additions and 13 deletions

View File

@@ -13,7 +13,7 @@ const { currentPage } = Astro.props;
</head> </head>
<body> <body>
<Header currentPage={currentPage} /> <Header currentPage={currentPage} />
<div class="px-4 py-2"> <div class="px-4 py-4">
<slot /> <slot />
</div> </div>
</body> </body>

View File

@@ -68,17 +68,19 @@ const projects: ProjectMetadata[] = Object.values(
--- ---
<Layout currentPage="home"> <Layout currentPage="home">
<h1 class="text-md mb-4">projects</h1> <!-- <h1 class="text-md mb-4">projects:</h1> -->
{ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-4">
projects.map((project) => ( {
<ProjectListItem projects.map((project) => (
title={project.title} <ProjectListItem
description={project.description} title={project.title}
date={project.date} description={project.description}
image={project.image} date={project.date}
slug={project.slug} image={project.image}
/> slug={project.slug}
)) />
} ))
}
</div>
</Layout> </Layout>

View File

@@ -0,0 +1,29 @@
---
import ProjectPage from "../../components/ProjectPage.astro";
export const metadata = {
title: "MIZU",
description:
"A discord bot card trading and collection game. (Currently inactive, 4000+ players) ",
date: "January - June 2024",
slug: "mizu",
image: "/mizu-icon.svg",
hidden: false,
};
---
<ProjectPage metadata={metadata}>
<p>simple description here</p>
<p>images here</p>
<div class="bg-ayu-highlight p-4 rounded mt-4">
<h2 class="text-lg text-ayu-accent mb-2">Technologies</h2>
<ul class="list-disc list-inside space-y-1">
<li>Node.js</li>
<li>TypeScript</li>
<li>PostgreSQL</li>
<li>AWS S3</li>
</ul>
</div>
</ProjectPage>

View File

@@ -0,0 +1,17 @@
---
import ProjectPage from "../../components/ProjectPage.astro";
export const metadata = {
title: "wiskatron",
description: "Spotify listening activity with dynamic visuals",
date: "February 2024",
slug: "wiskatron",
// image: null,
image: "/wiskatron-icon.svg",
hidden: false,
};
---
<ProjectPage metadata={metadata}>
<p class="mb-4">lorem ipsum</p>
</ProjectPage>