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">
|
2022-11-09 21:39:54 +00:00
|
|
|
<div class="col-md-6 col-xl-7 shift-content order-md-first">
|
2022-11-08 06:10:06 +00:00
|
|
|
<h1>{t('Partners')}</h1>
|
|
|
|
</div>
|
2022-09-23 18:27:05 +00:00
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</MainLayout>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// for lazy loading
|
|
|
|
export default PartnersPage
|