import { Avatar, Col, Link, Row, Text } from '@nextui-org/react' import { SessionTypes } from '@walletconnect/types' /** * Types */ interface IProps { metadata: SessionTypes.Participant['metadata'] } /** * Components */ export default function ProjectInfoCard({ metadata }: IProps) { const { icons, name, url } = metadata return ( {name} {url} ) }