feat: restyle StatusView and status page with Tailwind
This commit is contained in:
@@ -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>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user