--- import { Card, CardContent, CardDescription, CardHeader, CardFooter } 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; const dateFormatter = new Intl.DateTimeFormat('en-GB', { day: '2-digit', month: 'long', year: 'numeric', }); ---

{title}

{description}
{author} {dateFormatter.format(publishDate)}