initial upload

This commit is contained in:
Kai Waggeling 2025-05-17 16:20:29 +02:00
parent 987c99d00b
commit bb6c0147db
44 changed files with 1884 additions and 131 deletions

16
ui/widgets/title.njk Normal file
View file

@ -0,0 +1,16 @@
{% macro alignLeft(title) %}
<div class="w-full flex flex-col p-4">
<h1 class="font-extrabold text-gray-900 text-4xl md:text-5xl lg:text-6xl text-left pb-4 border-b border-gray-500">
{{ title }}
</h1>
</div>
{% endmacro %}
{% macro largeLeft(title, settings) %}
<div class="w-full flex flex-col py-4">
<h1 class="font-extrabold text-gray-900 text-7xl md:text-8xl lg:text-9xl text-center">
{{ title }}
</h1>
</div>
{% endmacro %}