import { motion } from "framer-motion"; import Link from "next/link"; import Image from "next/image"; export default function Card({ post }) { return ( {post.data.image && ( {post.data.title} )}

{post.data.title}

{post.data.tools && post.data.tools.map((tool) =>

{tool}

)}
); }