src/components/profile-2.tsximport React from 'react'import { clsx } from 'clsx'import { Image } from '@/components/image'import { Icon } from '@/components/icon'interface ContactLink {/** Iconify icon object */icon: { body: string; width?: number; height?: number }/** URL for the link */link: string}interface Profile2Props {/** Image source URL for the profile */img: string/** Name or citation for the profile */cite: string/** Profile content - should be Heading and Paragraph components */children: React.ReactNode/** Social media or contact links with icons */
Showing the first 20 lines.
Get full code