/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; import clsx from 'clsx'; import styles from './HomepageFeatures.module.css'; type FeatureItem = { title: string; image: string; description: JSX.Element; }; const FeatureList: FeatureItem[] = [ { title: 'Don\'t Hate, Curate.', image: '', description: ( <> Browse, search, discover your comic book library that you have so proudly built from scratch. ), }, { title: 'No Fuss DC++', image: '', description: ( <> With first-class support for the excellent AirDC++, find and acquire hidden gems. ), }, { title: 'Shine with Comic Vine', image: '', description: ( <> Scrape Comic Vine's exhaustive comic book database to analyze and clean up your library's metadata. ), }, ]; function Feature({title, image, description}: FeatureItem) { return (
{title}

{title}

{description}

); } export default function HomepageFeatures(): JSX.Element { return (
{FeatureList.map((props, idx) => ( ))}
); }