aboutsummaryrefslogtreecommitdiff
path: root/src/components/HomepageFeatures/feature-item.ts
blob: 31a926879523915f886491424775db18a7762d4a (plain)
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">> };