import { SimpleGrid } from '@mantine/core'; import { Feature } from '~/components/home/feature'; export const featureList = [ 'collection', 'link', 'search', 'extension', 'share', 'contribute', ] as const; export const FeatureList = () => ( {featureList.map((feature, index) => ( ))} );