import { CustomersSection } from "@/components/ui/customers-section"
const customers = [
{ src: "https://cdn.simpleicons.org/nvidia/000000", alt: "Nvidia Logo", height: 20 },
{ src: "https://cdn.simpleicons.org/supabase/000000", alt: "Supabase Logo", height: 20 },
{ src: "https://cdn.simpleicons.org/github/000000", alt: "GitHub Logo", height: 20 },
{ src: "https://cdn.simpleicons.org/stripe/000000", alt: "Stripe Logo", height: 20 },
{ src: "https://cdn.simpleicons.org/turso/000000", alt: "Turso Logo", height: 20 },
{ src: "https://cdn.simpleicons.org/clerk/000000", alt: "Clerk Logo", height: 20 },
{ src: "https://cdn.simpleicons.org/claude/000000", alt: "Claude Logo", height: 20 },
{ src: "https://cdn.simpleicons.org/vercel/000000", alt: "Vercel Logo", height: 20 },
]
export function CustomersSectionDemo() {
return (
<CustomersSection customers={customers} />
)
}