mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-07 18:23:04 +00:00
30 lines
759 B
Plaintext
30 lines
759 B
Plaintext
---
|
|
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>
|