mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-23 22:18:43 -05:00
21 lines
707 B
TypeScript
21 lines
707 B
TypeScript
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>
|
|
)
|
|
}
|