first commit
This commit is contained in:
9
components/ui/BentoGrid.tsx
Normal file
9
components/ui/BentoGrid.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { ReactNode } from "react";
|
||||
|
||||
export const BentoGrid = ({ children, className = "" }: { children: ReactNode; className?: string }) => {
|
||||
return (
|
||||
<div className={`grid grid-cols-1 md:grid-cols-3 gap-6 ${className}`}>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user