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
|
|
|
|
|
|
|
---
|
|
|
|
|
2024-02-25 09:13:19 +01:00
|
|
|
<BaseLayout title="Research" image="og_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>
|
|
|
|
))}
|
|
|
|
|
2024-01-25 23:28:15 +01:00
|
|
|
<p class="mt-10">
|
|
|
|
<a href="https://github.com/web3privacy/data/tree/main/src/projects" class="hover:underline">Source repository</a>
|
|
|
|
</p>
|
2023-11-13 03:03:34 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</BaseLayout>
|