Components
Loading preview...
Customers Section with Moption Primitives
npx shadcn@latest add https://21st.dev/r/meschacirung/customers-sectionimport { CustomersSection } from "@/components/ui/customers-section"
const customers = [
{
src: "https://html.tailus.io/blocks/customers/nvidia.svg",
alt: "Nvidia Logo",
height: 20,
},
{
src: "https://html.tailus.io/blocks/customers/column.svg",
alt: "Column Logo",
height: 16,
},
{
src: "https://html.tailus.io/blocks/customers/github.svg",
alt: "GitHub Logo",
height: 16,
},
{
src: "https://html.tailus.io/blocks/customers/nike.svg",
alt: "Nike Logo",
height: 20,
},
{
src: "https://html.tailus.io/blocks/customers/lemonsqueezy.svg",
alt: "Lemon Squeezy Logo",
height: 20,
},
{
src: "https://html.tailus.io/blocks/customers/laravel.svg",
alt: "Laravel Logo",
height: 16,
},
{
src: "https://html.tailus.io/blocks/customers/lilly.svg",
alt: "Lilly Logo",
height: 28,
},
{
src: "https://html.tailus.io/blocks/customers/openai.svg",
alt: "OpenAI Logo",
height: 24,
},
]
export function CustomersSectionDemo() {
return (
<CustomersSection customers={customers} />
)
}