web/src/pages/research.astro

24 lines
482 B
Text
Raw Normal View History

2023-11-13 03:03:34 +01:00
---
import BaseLayout from '../layouts/base.astro';
2024-01-25 22:02:15 +01:00
import core from '../core.json';
const research = core.projects.filter(x => x.type && x.type === "research");
2023-11-13 03:03:34 +01:00
---
2023-12-20 23:14:44 +01:00
<BaseLayout title="Research">
2023-11-13 03:03:34 +01:00
<div class="middle-pane-medium mt-10">
2024-01-25 22:02:15 +01:00
<h1 id="upcoming">Research ({research.length})</h1>
{research.map((item) => (
<div class="w3pn-project-item">
<a href={item.links.docs} class="block p-6 text-white text-xl">{item.name}</a>
</div>
))}
2023-11-13 03:03:34 +01:00
</div>
</BaseLayout>