Add Wakatime stats

This commit is contained in:
2026-02-27 01:24:59 +01:00
parent f5aa15e0f4
commit a93718b455
20 changed files with 1898 additions and 52 deletions

View File

@@ -0,0 +1,13 @@
import { cn } from "@/lib/utils"
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("bg-muted rounded-md animate-pulse", className)}
{...props}
/>
)
}
export { Skeleton }