import * as React from "react";
import { Skeleton } from "@/components/ui/skeleton";
import { Masonry, MasonryItem } from "@/registry/default/ui/masonry";
const items = [
{
id: "1",
title: "The 900",
description: "The 900 is a trick where you spin 900 degrees in the air.",
},
{
id: "2",
title: "Indy Backflip",
description:
"The Indy Backflip is a trick where you backflip in the air while grabbing the board with your back hand.",
},
{
id: "3",
title: "Pizza Guy",
description:
"The Pizza Guy is a trick where you flip the board like a pizza.",
},
{
id: "4",
title: "Rocket Air",
description:
"The Rocket Air is a trick where you grab the nose of your board and point it straight up to the sky.",
},
{
id: "5",
title: "Kickflip Backflip",
description:
"The Kickflip Backflip is a trick where you perform a kickflip while doing a backflip simultaneously.",
},
{
id: "6",
title: "FS 540",
description:
"The FS 540 is a trick where you spin frontside 540 degrees in the air.",
},
];
export default function MasonryDemo() {
return (
<Masonry
columnCount={3}
gap={12}
fallback={<Skeleton className="h-72 w-full" />}
>
{items.map((item) => (
<MasonryItem key={item.id} asChild>
<div className="flex flex-col gap-1 rounded-md border bg-card p-4 text-card-foreground shadow-xs">
<div className="font-medium text-sm leading-tight sm:text-base">
{item.title}
</div>
<span className="text-muted-foreground text-sm">
{item.description}
</span>
</div>
</MasonryItem>
))}
</Masonry>
);
}