import { Badge } from "./ui/badge"; import { Card, CardTitle, CardFooter, CardHeader, } from "@/components/ui/card"; import image4 from "../assets/looking-ahead.png"; //import { UploadDoc } from "./upload/streamlit_app.py"; interface FeatureProps { title: string; image: string; } const features: FeatureProps[] = [ { title: "UPLOAD DOCUMENT", image: image4, }, ]; 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, image }: FeatureProps) => ( {title} About feature {/* Upload sections */} ))}
); };