Blogging platform with advanced tools for arts and sciences.
6

Configure Feed

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

Add note to FAQ

lemma (Jun 4, 2026, 10:42 PM -0500) 7f050582 7555e3b4

+5
+5
app/routes/faq.tsx
··· 1 1 import { Link } from 'react-router' 2 + import { HeartIcon } from '@heroicons/react/24/outline' 2 3 import PageLayout from '~/components/PageLayout' 3 4 import { SITE_NAME } from '~/lib/site-config' 4 5 ··· 142 143 </div> 143 144 ))} 144 145 </div> 146 + 147 + <p className="text-sm text-stone-400 dark:text-stone-600 flex items-center gap-1"> 148 + Made with <HeartIcon className="size-4 text-red-500" /> in Chicago 149 + </p> 145 150 </PageLayout> 146 151 ) 147 152 }