export function Pattern1() {
return (
<div className="pattern-1 relative flex min-h-screen w-screen items-center justify-center">
<div className="rounded-md border border-2 bg-white px-6 py-3 text-lg font-medium text-black">
Pattern 1
</div>
</div>
);
}
npx shadcn@latest add @shadcndesign/pattern-1import { Pattern1 } from "@/components/pattern-1"<Pattern1 />