Daily log
{slug}
Deploys and beacons captured on this date.
--- import DeployTimeline from '../../../components/DeployTimeline.svelte'; import BeaconTable from '../../../components/BeaconTable.svelte'; import { getBeaconsByDate, getDeploysByDate } from '../../../lib/data'; const { yyyy, mm, dd } = Astro.params; const slug = `${yyyy}-${mm}-${dd}`; const deploys = getDeploysByDate(slug); const beacons = getBeaconsByDate(slug); ---
Daily log
Deploys and beacons captured on this date.