Props By Collection

import type { CollectionEntry } from "astro:content";
 
interface Props {
  post: CollectionEntry<"blog">;
}
 
const { post }: Props = Astro.props;