import { DEFAULT_MIN_VERSION } from "node:tls"; import React from "react"; import { Image } from "./Image"; import styles from "./MiniTechTalkCard.module.css"; interface MiniTechTalkProps { name: string; short: string; poster?: string; } export function MiniTechTalkCard({ name, poster, short }: MiniTechTalkProps) { return (

{name}

{short}

); }