import styles from "./pluginCard.module.css" import { PluginCardVO } from "@/app/home/plugins/plugin-installed/PluginCardVO"; import { GithubOutlined, LinkOutlined, ToolOutlined } from '@ant-design/icons'; import { Tag } from 'antd' export default function PluginCardComponent({ cardVO }: { cardVO: PluginCardVO }) { return (
{/* header */}
{/* left author */}
{cardVO.author}
{/* right icon & version */}
v{cardVO.version}
{/* content */}
{cardVO.name}
{cardVO.description}
{/* footer */}
1
); }