--- const { id, dataTab, title, first } = Astro.props; interface Props { id: string; dataTab: string; title: string; first?: boolean; } const BUTTON_CLASS = "flex w-full justify-center rounded-xl border border-transparent p-3 outline-none ring-zinc-500 transition duration-300 hover:bg-neutral-100 focus-visible:ring dark:ring-zinc-200 dark:hover:bg-neutral-700 dark:focus:outline-none md:p-5"; const HEADING_CLASS = "block text-center font-bold"; const INACTIVE_HEADING_CLASS = "text-neutral-800 dark:text-neutral-200"; ---