A vibe coded tangled fork which supports pijul.
at 16f25ff5d55581ae0d83cbeac370393a081e2763 30 lines 1.2 kB view raw
1{{ define "timeline/fragments/hero" }} 2 <div class="mx-auto max-w-[100rem] grid grid-cols-1 md:grid-cols-2 text-black dark:text-white px-6 py-4 gap-6 items-center md:flex-row"> 3 <h1 class="font-bold text-5xl md:text-6xl lg:text-8xl">tightly-knit<br>social coding.</h1> 4 <div id="hero-right" class="space-y-6"> 5 <p class="text-xl"> 6 The next-generation social coding platform. 7 </p> 8 <p class="text-xl"> 9 We envision a place where developers have ownership of their code, 10 communities can freely self-govern and most importantly, coding can 11 be social and fun again. 12 </p> 13 <form class="flex gap-2 items-stretch" method="get" action="/signup"> 14 <input 15 type="email" 16 id="email" 17 name="id" 18 tabindex="4" 19 required 20 placeholder="Enter your email" 21 class="py-2 w-full md:w-fit" 22 /> 23 <button class="btn-create flex items-center gap-2 text-base whitespace-nowrap" type="submit"> 24 join now 25 {{ i "arrow-right" "size-4" }} 26 </button> 27 </form> 28 </div> 29 </div> 30{{ end }}