zdravko/web/templates/pages/incidents.tmpl

20 lines
635 B
Cheetah
Raw Normal View History

2024-02-29 11:15:15 +00:00
{{ define "main" }}
<div class="container max-w-screen-md flex flex-col mt-20">
<section>
2024-02-23 08:36:13 +00:00
<div class="py-8 px-4 mx-auto max-w-screen-xl text-center lg:py-16">
2024-02-29 11:15:15 +00:00
<h1
class="mb-4 text-2xl font-extrabold tracking-tight leading-none text-gray-900 md:text-3xl lg:text-4xl"
>
2024-02-23 08:36:13 +00:00
There are no Incidents, yet.
2024-02-29 11:15:15 +00:00
</h1>
<p
class="mb-8 text-l font-normal text-gray-500 lg:text-l sm:px-8 lg:px-40"
>
Incidents will allow you to inform your users or co-worker groups
about outages and issues.
</p>
2024-02-23 08:36:13 +00:00
</div>
2024-02-29 11:15:15 +00:00
</section>
</div>
{{ end }}