feat: initial commit with seeded database and premium ui changes

This commit is contained in:
Dodo
2026-06-11 18:41:42 +07:00
commit edf94ae5c1
1684 changed files with 33073 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { cn } from "@/lib/utils";
import type * as React from "react";
import { Card } from "@/components/ui/card";
export function DashboardCard({
className,
...props
}: React.ComponentProps<typeof Card>) {
return (
<Card
className={cn("rounded-none bg-background shadow-none ring-0 border-none", className)}
{...props}
/>
);
}