--- import { Card, CardContent, CardDescription, CardHeader } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Separator } from "@/components/ui/separator"; interface Props { title: string; slug: string; description: string; author: string; publishDate: Date; } const { title, slug, description, author, publishDate } = Astro.props as Props; ---
{author} {publishDate.toLocaleDateString()}

{title}

{description}