mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
16 lines
540 B
Plaintext
16 lines
540 B
Plaintext
---
|
|
import SingleLayout from '@shared/layouts/SingleLayout.astro'
|
|
import Progress from '@ui/Progress.astro'
|
|
---
|
|
|
|
<SingleLayout title="Page loader" containerSize="slim" hideLogo>
|
|
<h1 class="visually-hidden">Page loader</h1>
|
|
<div class="text-center">
|
|
<div class="mb-3">
|
|
<a href="." class="navbar-brand navbar-brand-autodark"><img src="./static/logo-small.svg" height="36" alt="" /></a>
|
|
</div>
|
|
<div class="text-secondary mb-3">Preparing application</div>
|
|
<Progress indeterminate size="sm" />
|
|
</div>
|
|
</SingleLayout>
|