2023-12-20 23:14:44 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
import BaseLayout from '../layouts/base.astro';
|
|
|
|
import * as config from '../config.yaml';
|
2024-01-25 21:51:47 +01:00
|
|
|
import core from '../core.json';
|
2023-12-20 23:14:44 +01:00
|
|
|
import AboutFooter from '../components/AboutFooter.astro';
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
<BaseLayout title="About">
|
|
|
|
|
|
|
|
<div class="middle-pane-medium mt-10">
|
|
|
|
<div class="grid grid-cols-1 xl:grid-cols-2 gap-16">
|
|
|
|
<div>
|
|
|
|
<h1>Our mission</h1>
|
|
|
|
<div set:html={config.landing.mission}></div>
|
|
|
|
<div class="mt-8">
|
2024-01-25 21:51:47 +01:00
|
|
|
<a class="button inverted" href={core.links.manifesto}><button>Read manifesto</button></a>
|
2023-12-20 23:14:44 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h1>Topics</h1>
|
|
|
|
<div class="columns-2 uppercase text-sm w3pn-topics">
|
|
|
|
{config.landing.topics.map((topic) => (
|
|
|
|
<div>{topic}</div>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<AboutFooter />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</BaseLayout>
|