import { CurvyRect } from "@/components/shared/ui"; import Image from "@/components/shared/image/Image"; import "./Logocloud.css"; export default function Logocloud() { // Create array starting from index 1, with 17-19 first, then 1-21 const logoIndices = [17, 18, ...Array.from({ length: 21 }, (_, i) => i + 1)]; return (
Trusted by{" "} 5000+
companies
{" "} of all sizes
{Array.from({ length: 2 }, (_, i) => (
{logoIndices.map((logoIndex, i) => (
{`Logo
))}
))}
); }