SPB Git

spb/worthdoing Public

Autonomous investigation agent that discovers, challenges, and ranks things genuinely worth doing — Claude + Firecrawl, Next.js 16, PostgreSQL

TypeScript 91.5% SQL 5.8% CSS 2.2%
275 B · 14 lines tsx
Raw Blame History
1import { cn } from "@/lib/utils"23function Skeleton({ className, ...props }: React.ComponentProps<"div">) {4  return (5    <div6      data-slot="skeleton"7      className={cn("animate-pulse rounded-md bg-muted", className)}8      {...props}9    />10  )11}1213export { Skeleton }14