import type { Select } from "corvos"; import type site from "@/corvos.config.ts"; import { CardBody } from "$/ui/objects/CardBody.tsx"; import { Heading } from "$/ui/objects/Heading.tsx"; import { Card, type Props as CardProps } from "../objects/Card.tsx"; export type Props = CardProps<"a"> & { "heading-level": "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; "page": Select; }; export const ReleaseCard = ({ "heading-level": headingLevel, page, ...props }: Props) => { const time = (
  • ); return ( {page.data.title}
      {time}
      {time}
    ); };