import { motion } from "framer-motion"; interface ExampleCardProps { title: string; company: string; image: string; } function ExampleCard({ title, company, image }: ExampleCardProps) { return (

{title}

{company}

); } export default ExampleCard;