import { Link } from "@remix-run/react"; type PostProps = { title: string; description: string | null; id: string; createdAt: string; }; export function Post({ title, description, id, createdAt }: PostProps) { return (