feat: restyle StatusView and status page with Tailwind

This commit is contained in:
2026-08-11 09:02:32 +02:00
parent 3f499177b6
commit f6dc3801c6
2 changed files with 62 additions and 15 deletions
+5 -2
View File
@@ -8,9 +8,12 @@ export default async function StatusPage({
}) {
const { locale, uuid } = await params
const t = await getTranslations({ locale, namespace: 'status' })
return (
<main style={{ padding: '2rem' }}>
<h1>{t('heading')}</h1>
<main className="flex flex-col items-center px-6 py-16">
<h1 className="text-2xl font-bold tracking-tight text-gray-900 dark:text-gray-50 mb-10">
{t('heading')}
</h1>
<StatusView uuid={uuid} />
</main>
)