"use client"; import { motion, AnimatePresence } from "motion/react"; import { useState } from "react"; import ActionMenu from "./action-menu"; type App = { id: string; name: string; description?: string; address: string; ssh_addr?: string; }; interface Props { app: App; } export default function AppCard({ app }: Props) { let pingStatus = true; const [hovered, setHovered] = useState(false); return (