Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions app/src/pages/OpenSource.page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import { Stack, Text } from '@mantine/core';
import PageHeader from '@/components/shared/static/PageHeader';
import { TitleCardWithHeader } from '@/components/shared/static/TextCardWithHeader';

export default function OpenSourcePage() {
return (
<Stack gap="lg">
<PageHeader
title="Open source"
description="PolicyEngine's commitment to open source software and transparent policy analysis"
/>

<TitleCardWithHeader
title="Coming soon"
sections={[
{
body: (
<>
<Text>
We're currently developing comprehensive content about PolicyEngine's open source
software and our commitment to transparency. This page will include:
</Text>

<ul style={{ marginTop: '1rem', paddingLeft: '1.5rem' }}>
<li>Overview of our open source repositories and software architecture</li>
<li>Contributor guidelines and how to get involved</li>
<li>Our open source philosophy and commitment to transparency</li>
<li>Case studies of community contributions</li>
<li>Development roadmap and future plans</li>
</ul>
</>
),
},
]}
/>
</Stack>
);
}
Loading