@sujalchoudhari/solaris-ui
Version:
A UI framework to create HTML pages with just JavaScript.
14 lines • 448 B
HTML
<div class="p-6 py-12 dark:bg-yellow-400 dark:text-gray-900">
<div class="container mx-auto">
<div class="flex flex-col lg:flex-row items-center justify-between">
<h2 class="text-center text-6xl tracking-tighter font-bold">{{title}}
</h2>
<div class="space-x-2 text-center py-2 lg:py-0">
{{content}}
{{#children}}
{{.}}
{{/children}}
</div>
</div>
</div>
</div>