--- import type { Group, Service } from '../data/rules'; import { getGroupSlug, getServiceSlug } from '../data/rules'; interface Props { groups: Group[]; currentGroupSlug?: string; currentServiceSlug?: string; currentService?: Service; base: string; } const { groups, currentGroupSlug, currentServiceSlug, currentService, base } = Astro.props; ---