webapp/src/pages/about/projects.page.tsx

21 lines
590 B
TypeScript
Raw Normal View History

2023-02-17 09:21:02 +00:00
import { Title } from '@solidjs/meta'
import { PageLayout } from '../../components/_shared/PageLayout'
import { useLocalize } from '../../context/localize'
2022-09-23 18:27:05 +00:00
export const ProjectsPage = () => {
2023-02-17 09:21:02 +00:00
const { t } = useLocalize()
2022-09-23 18:27:05 +00:00
return (
2023-02-17 09:21:02 +00:00
<PageLayout>
<Title>{t('Projects')}</Title>
2022-11-24 21:37:43 +00:00
<article class="wide-container container--static-page">
2022-09-23 18:27:05 +00:00
<div class="row">
2023-03-10 17:42:48 +00:00
<div class="col-md-12 col-xl-14 offset-md-5 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>
2023-02-17 09:21:02 +00:00
</PageLayout>
2022-09-23 18:27:05 +00:00
)
}
2023-02-17 09:21:02 +00:00
export const Page = ProjectsPage