about.html

17 lines
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{{template "main.html" .}}

{{define "title"}}About{{end}}

{{define "content"}}
<div class="prose prose-lg mx-auto py-12">
    <h1>About</h1>
    <p>This application was built with the Congo framework.</p>
    <h2>Stack</h2>
    <ul>
        <li><strong>Backend:</strong> Go with the Congo application framework</li>
        <li><strong>Frontend:</strong> HTMX for interactivity, DaisyUI for styling</li>
        <li><strong>Database:</strong> SQLite / LibSQL with automatic schema migration</li>
        <li><strong>Islands:</strong> React components for complex interactive UI</li>
    </ul>
</div>
{{end}}