1{{ layout "layouts/base.vto" }}
2 <main class="min-h-screen text-ctp-text justify-self-center w-full lg:w-1/2">
3 <h1 class="my-8 text-5xl text-bold text-ctp-mauve">Projects</h1>
4 <ul class="space-y-4">
5 {{ for project of projects.projects }}
6 {{ await comp.project_card({ "project": project }) }}
7 {{ /for }}
8 </ul>
9 </main>
10{{ /layout }}