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
19 lines
542 B
TypeScript
19 lines
542 B
TypeScript
import {ContactComponent} from 'web/components/contact'
|
|
import {PageBase} from 'web/components/page-base'
|
|
import {SEO} from 'web/components/SEO'
|
|
import {useT} from 'web/lib/locale'
|
|
|
|
export default function ContactPage() {
|
|
const t = useT()
|
|
return (
|
|
<PageBase trackPageView={'contact page'} className={'relative p-2 sm:pt-0'}>
|
|
<SEO
|
|
title={t('contact.seo.title', 'Contact')}
|
|
description={t('contact.seo.description', 'Contact us')}
|
|
url={`/contact`}
|
|
/>
|
|
<ContactComponent />
|
|
</PageBase>
|
|
)
|
|
}
|