trig deploy

This commit is contained in:
tonyrewin 2022-10-05 21:37:47 +03:00
parent e812a1b44d
commit 1071ed8107
2 changed files with 4 additions and 2 deletions

View File

@ -1,10 +1,11 @@
---
import { Confirmed } from '../../components/Nav/Confirmed'
import { t } from '../../utils/intl'
const token = Astro.params.token?.toString() || ''
---
<html>
<head><title>discours.io</title></head>
<head><title>{t('Discours')}</title></head>
<body>
<Confirmed token={token} />
</body>

View File

@ -1,8 +1,9 @@
---
import { t } from '../../utils/intl'
import { Confirmed } from '../../components/Nav/Confirmed'
---
<html>
<head><title>discours.io</title></head>
<head><title>{t('Discours')}</title></head>
<body>
<Confirmed />
</body>