import type { StaticImageData } from 'next/image'; import Image from 'next/image'; import type { ReactNode } from 'react'; import { HOME_URL } from '../constants'; type RightTextCarddProps = Readonly<{ description: string; icon: ReactNode; imageAlt: string; imageSrc: StaticImageData; title: string; }>; export default function RightTextCard({ description, icon, imageAlt, imageSrc, title, }: RightTextCarddProps) { return (
{icon}

{title}

{description}

Get started
{imageAlt}
); }