Svelte Maintenance Pages - Flowbite Svelte Blocks

Get started with maintenance pages coded with Tailwind CSS to show your users when you are currently working on an update and the website is not accessible.

Default maintenance page #

Use this example to let your users know that you are working on an important update and the website is down for a couple of hours.

Under Maintenance

Our Enterprise administrators are performing scheduled maintenance.

  • Svelte
<script>
  import { Section, Maintenance } from 'flowbite-svelte-blocks';
</script>

<Section name="maintenance">
  <Maintenance>
    <svelte:fragment slot="h1">Under Maintenance</svelte:fragment>
    <svelte:fragment slot="paragraph">Our Enterprise administrators are performing scheduled maintenance.</svelte:fragment>
  </Maintenance>
</Section>

Component data