mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-07 18:23:04 +00:00
mizu + wiskatron
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
29
src/pages/projects/mizu.astro
Normal file
29
src/pages/projects/mizu.astro
Normal 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>
|
||||||
17
src/pages/projects/wiskatron.astro
Normal file
17
src/pages/projects/wiskatron.astro
Normal 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>
|
||||||
Reference in New Issue
Block a user