'use client'; import React from 'react'; import { List, Tag } from 'antd'; import { RightOutlined } from '@ant-design/icons'; import Image from 'next/image'; import { Link } from '../../navigation'; import { ExpertsData } from '../../types/experts'; type ExpertListProps = { data: ExpertsData; priceTitle: string; durationTitle: string; detailButton: string; }; export const ExpertsList = ({ data, priceTitle, durationTitle, detailButton }: ExpertListProps) => { const getTitle = (str: string, value?: any): string => (value ? str.replace('0', value) : str); return ( ( )} description={(
{`${item.name} ${item?.surname || ''}`}
{getTitle(priceTitle, item?.sessionCost)} / {getTitle(durationTitle, item?.sessionDuration)}
)} />
{item?.tags?.slice(0, 2).map((skill) => {skill?.name})} {item?.tags?.length > 2 ? ( {`+${item?.tags?.length - 2}`} ) : null}
{item?.speciality}
{item?.specialityDesc}
{item?.description}
{detailButton}
)} /> ); };