add: add address page

This commit is contained in:
Mahyar Khanbolooki
2025-08-08 19:41:29 +03:30
parent 40f4ec6449
commit 95a21b84ab
15 changed files with 1021 additions and 16 deletions
+15
View File
@@ -0,0 +1,15 @@
import { cn } from "@/lib/utils"
function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("animate-pulse rounded-md bg-zinc-200/70", className)}
{...props}
/>
)
}
export { Skeleton }