Add entrance hall to expo area (3d model made by v4ltages)

This commit is contained in:
2025-08-25 23:38:51 +03:00
parent 1ef88c8b9a
commit 4f9a5812b5
5 changed files with 624 additions and 139 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-accent animate-pulse rounded-md", className)}
{...props}
/>
)
}
export { Skeleton }