url -> long_url
This commit is contained in:
parent
b15cac7ed0
commit
dbf0b5d670
21 changed files with 237 additions and 175 deletions
18
src/components/card-grid.tsx
Normal file
18
src/components/card-grid.tsx
Normal file
|
@ -0,0 +1,18 @@
|
|||
export default function CardGrid({
|
||||
children,
|
||||
className,
|
||||
...props
|
||||
}: {
|
||||
children?: React.ReactNode;
|
||||
className?: string;
|
||||
}) {
|
||||
|
||||
return (
|
||||
<div
|
||||
className={`hidden items-start justify-center gap-6 rounded-lg p-8 md:grid lg:grid-cols-2 xl:grid-cols-3 2xl:grid-cols-4" ${className}`}
|
||||
{...props}
|
||||
>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue