webapp/src/pages/confirm/index.astro

11 lines
196 B
Plaintext
Raw Normal View History

2022-10-05 17:17:38 +00:00
---
2022-10-05 18:37:47 +00:00
import { t } from '../../utils/intl'
2022-10-05 17:17:38 +00:00
import { Confirmed } from '../../components/Nav/Confirmed'
---
<html>
2022-10-05 18:37:47 +00:00
<head><title>{t('Discours')}</title></head>
2022-10-05 17:17:38 +00:00
<body>
<Confirmed />
</body>
</html>