import { FeatureCardBackground } from '@/components/feature-card'; import { Section, SectionHeader, SectionLabel } from '@/components/section'; import { Tag } from '@/components/tag'; import { cn } from '@/lib/utils'; import { ArrowDownIcon } from 'lucide-react'; import Image from 'next/image'; const images = [ { name: 'Helpy UI', url: 'https://helpy-ui.com', logo: '/logos/helpy-ui.png', className: 'size-12', }, { name: 'KiddoKitchen', url: 'https://kiddokitchen.se', logo: '/logos/kiddokitchen.png', }, { name: 'Maneken', url: 'https://maneken.app', logo: '/logos/maneken.png', }, { name: 'Midday', url: 'https://midday.ai', logo: '/logos/midday.png', }, { name: 'Screenzen', url: 'https://www.screenzen.co', logo: '/logos/screenzen.png', }, { name: 'Tiptip', url: 'https://tiptip.id', logo: '/logos/tiptip.png', }, ]; export function WhyOpenPanel() { return (
USED BY
{images.map((image) => (
{image.name}
))}
); }