import { Badge } from "./ui/badge"; import { Card, CardTitle, CardFooter, CardHeader, } from "@/components/ui/card"; interface FeatureProps { title: string; } const features: FeatureProps[] = [ { title: "UPLOAD DOCUMENT", }, ]; const featureList: string[] = [ "STEP1: Do this", "STEP2: Do that that", "STEP3: Do that that that", "STEP4: Do that that that that", ]; export const Features = () => { return (

Get Started{" "} NOW{" "} Upload Your Document

{featureList.map((feature: string) => (
{feature}
))}
{features.map(({ title }: FeatureProps) => ( {title} ))}
); };