This repository has no description
0

Configure Feed

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

1{{ define "onboarding/progressBar" }} 2 <div class="flex items-center gap-2"> 3 <span class="text-xs tabular-nums text-gray-500 dark:text-gray-400 shrink-0">{{ .Step }}/{{ .Total }}</span> 4 <div class="h-1 flex-1 rounded-full bg-gray-200 dark:bg-gray-700 overflow-hidden"> 5 <div class="h-full rounded-full bg-indigo-500" style="width: {{ .Percent }}%"></div> 6 </div> 7 </div> 8{{ end }}