--- import { type ArchiveMonth, formatArchiveDay } from '../../lib/archive'; import { getPostUrl } from '../../lib/content'; interface Props { group: ArchiveMonth; } const { group } = Astro.props as Props; const { month, total, days } = group; ---

{month} 月

{total} 篇

{ days.map(({ day, posts }) => (

{formatArchiveDay(day)} 日

)) }