restored everything after nuking the repo
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
const AuthImagePattern = ({ title, subtitle }) => {
|
||||
return (
|
||||
<div className="hidden lg:flex items-center justify-center bg-base-200 p-12">
|
||||
<div className="max-w-md text-center">
|
||||
<div className="grid grid-cols-3 gap-3 mb-8">
|
||||
{[...Array(9)].map((_, i) => (
|
||||
<div
|
||||
key={i}
|
||||
className={`aspect-square rounded-2xl bg-primary/10 ${
|
||||
i % 2 === 0 ? "animate-pulse" : ""
|
||||
}`}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
<h2 className="text-2xl font-bold mb-4">{title}</h2>
|
||||
<p className="text-base-content/60">{subtitle}</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default AuthImagePattern;
|
||||
Reference in New Issue
Block a user