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

22 lines
490 B
TypeScript
Raw Normal View History

2022-09-23 18:27:05 +00:00
import { MainLayout } from '../../Layouts/MainLayout'
import { t } from '../../../utils/intl'
// title={t('Projects')}>
export const ProjectsPage = () => {
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 19:48:00 +00:00
<div class="col-md-7 shift-content order-md-first">
2022-11-08 06:10:06 +00:00
<h1>{t('Projects')}</h1>
</div>
2022-09-23 18:27:05 +00:00
</div>
</article>
</MainLayout>
)
}
// for lazy loading
export default ProjectsPage