webapp/src/components/Pages/about/PartnersPage.tsx

22 lines
513 B
TypeScript
Raw Normal View History

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-08 06:41:50 +00:00
<div class="col-md-8 col-lg-7 col-xl-8 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