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
+16
View File
@@ -0,0 +1,16 @@
import type React from "react";
export function AuthDivider({
children,
...props
}: React.ComponentProps<"div">) {
return (
<div className="relative flex w-full items-center" {...props}>
<div className="w-full border-t" />
<div className="flex w-max justify-center text-nowrap px-2 text-muted-foreground text-xs">
{children}
</div>
<div className="w-full border-t" />
</div>
);
}