mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-23 22:18:43 -05:00
Add /donate page with OC widget
This commit is contained in:
20
web/pages/donate.tsx
Normal file
20
web/pages/donate.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import {PageBase} from 'web/components/page-base'
|
||||
import {SEO} from 'web/components/SEO'
|
||||
import {Col} from 'web/components/layout/col'
|
||||
|
||||
export default function DonatePage() {
|
||||
return (
|
||||
<PageBase trackPageView={'donate'} className={'relative p-2 sm:pt-0'}>
|
||||
<SEO
|
||||
title={`Security`}
|
||||
description={'Donate to support Compass'}
|
||||
url={`/donate`}
|
||||
/>
|
||||
<Col className="max-w-3xl w-full mx-auto gap-6 custom-link">
|
||||
<h1 className="text-3xl font-semibold">Donate</h1>
|
||||
<iframe src="https://opencollective.com/embed/compass-connection/donate?hideFAQ=true"
|
||||
style={{width: '100%', minHeight: '100vh'}}></iframe>
|
||||
</Col>
|
||||
</PageBase>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user