2022-09-23 18:27:05 +00:00
|
|
|
import { MainLayout } from '../../Layouts/MainLayout'
|
|
|
|
import { t } from '../../../utils/intl'
|
|
|
|
|
|
|
|
// const title = t('Partners')
|
|
|
|
|
|
|
|
export const PartnersPage = () => {
|
|
|
|
return (
|
|
|
|
<MainLayout>
|
2022-11-02 21:43:38 +00:00
|
|
|
<article class="container container--static-page">
|
2022-09-23 18:27:05 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-8 offset-md-2">{t('Partners')}</div>
|
|
|
|
<div class="col-md-8 col-lg-6 offset-md-3" />
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</MainLayout>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// for lazy loading
|
|
|
|
export default PartnersPage
|