1 2 3 4 5 6 7 8 9 10 11 12
export type FeatureItem = { n?: number; title: string; description: JSX.Element; showcase: ShowCase; buttonText: string; shadowColor?: string; }; export type ShowCase = | { code: string; language: string } | { img: React.ComponentType<React.ComponentProps<"img">> };