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 / welcome.html
922 B 19 lines
1{{ define "timeline/fragments/welcome" }} 2 <div class="border border-gray-200 dark:border-gray-700 rounded-sm divide-y divide-gray-200 dark:divide-gray-700"> 3 <div class="flex items-center justify-between bg-white/50 dark:bg-gray-800/50"> 4 <h3 class="text-base dark:text-white flex items-center gap-2 px-4 py-2"> 5 {{ i "sparkle" "size-4 flex-shrink-0" }} 6 Welcome 7 </h3> 8 <a href="/welcome" class="text-sm font-normal flex items-center gap-1 pr-4 text-gray-500 dark:text-gray-400 no-underline hover:no-underline"> 9 Continue {{ i "arrow-right" "size-3.5" }} 10 </a> 11 </div> 12 <div class="flex flex-col gap-3 px-4 py-3 bg-white dark:bg-gray-800"> 13 <p class="text-sm text-gray-500 dark:text-gray-400"> 14 Continue where you left off to finish setting up your account. 15 </p> 16 {{ template "onboarding/progressBar" .Onboarding }} 17 </div> 18 </div> 19{{ end }}