a tool for shared writing and social publishing

change watermark to point to about.leaflet.pub

+6 -2
+6 -2
components/Watermark.tsx
··· 8 8 let showWatermark = useEntity(rootEntity, "theme/page-leaflet-watermark"); 9 9 if (!showWatermark?.data.value) return null; 10 10 return ( 11 - <Link href="/" className="hover:no-underline w-fit italic" prefetch={false}> 11 + <a 12 + href="https://about.leaflet.pub" 13 + className="hover:no-underline w-fit italic" 14 + target="_blank" 15 + > 12 16 <div className="sm:mb-2 sm:mr-4 group/watermark flex sm:flex-col gap-2 items-center justify-center "> 13 17 <div 14 18 className="sm:hidden group-hover/watermark:block sm:rotate-180 sm:py-1 sm:px-0 px-1 w-max rounded-md h-fit whitespace-nowrap text-sm text-tertiary" ··· 24 28 className="text-accent-1 sm:text-tertiary group-hover/watermark:text-accent-1" 25 29 /> 26 30 </div> 27 - </Link> 31 + </a> 28 32 ); 29 33 };