--- import { format, add } from 'date-fns'; import CalendarIcon from '../assets/svg/calendar.svg'; interface Props { title: string; date: Date; slug?: string; } const { title, date, slug } = Astro.props; ---