This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / pages / templates / timeline / fragments / hero.html
1.2 kB 29 lines
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 required 19 placeholder="Enter your email" 20 class="py-2 w-full md:w-fit text-lg md:text-base" 21 /> 22 <button class="btn-create flex items-center gap-2 text-base whitespace-nowrap" type="submit"> 23 Join now 24 {{ i "arrow-right" "size-4" }} 25 </button> 26 </form> 27 </div> 28 </div> 29{{ end }}