mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-25 10:02:27 -04:00
* Test * Add pretty formatting * Fix Tests * Fix Tests * Fix Tests * Fix * Add pretty formatting fix * Fix * Test * Fix tests * Clean typeckech * Add prettier check * Fix api tsconfig * Fix api tsconfig * Fix tsconfig * Fix * Fix * Prettier
26 lines
850 B
TypeScript
26 lines
850 B
TypeScript
import {Col} from 'web/components/layout/col'
|
|
import {PageBase} from 'web/components/page-base'
|
|
import {SEO} from 'web/components/SEO'
|
|
import {useT} from 'web/lib/locale'
|
|
|
|
export default function DonatePage() {
|
|
const t = useT()
|
|
|
|
return (
|
|
<PageBase trackPageView={'donate'} className={'relative p-2 sm:pt-0'}>
|
|
<SEO
|
|
title={t('donate.seo.title', 'Donate')}
|
|
description={t('donate.seo.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">{t('donate.title', 'Donate')}</h1>
|
|
<iframe
|
|
src="https://opencollective.com/embed/compass-connection/donate?hideFAQ=true"
|
|
style={{width: '100%', minHeight: '100dvh'}}
|
|
></iframe>
|
|
</Col>
|
|
</PageBase>
|
|
)
|
|
}
|