Skip to content

Commit addb52e

Browse files
committed
Add /donate page with OC widget
1 parent c3124ec commit addb52e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

web/pages/donate.tsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import {PageBase} from 'web/components/page-base'
2+
import {SEO} from 'web/components/SEO'
3+
import {Col} from 'web/components/layout/col'
4+
5+
export default function DonatePage() {
6+
return (
7+
<PageBase trackPageView={'donate'} className={'relative p-2 sm:pt-0'}>
8+
<SEO
9+
title={`Security`}
10+
description={'Donate to support Compass'}
11+
url={`/donate`}
12+
/>
13+
<Col className="max-w-3xl w-full mx-auto gap-6 custom-link">
14+
<h1 className="text-3xl font-semibold">Donate</h1>
15+
<iframe src="https://opencollective.com/embed/compass-connection/donate?hideFAQ=true"
16+
style={{width: '100%', minHeight: '100vh'}}></iframe>
17+
</Col>
18+
</PageBase>
19+
)
20+
}

0 commit comments

Comments
 (0)