{"version":3,"file":"blog-dTs-v9GM.js","sources":["../../../app/components/sections/featured-section.tsx","../../../node_modules/@xstate/fsm/es/index.js","../../../node_modules/@reach/machine/dist/reach-machine.mjs","../../../node_modules/@reach/checkbox/dist/reach-checkbox.mjs","../../../app/components/tag.tsx","../../../node_modules/remove-accents/index.js","../../../node_modules/match-sorter/dist/match-sorter.esm.js","../../../app/utils/blog.ts","../../../app/routes/blog.tsx"],"sourcesContent":["import { getImgProps, type ImageBuilder } from '~/images.tsx'\nimport { ArrowLink } from '../arrow-button.tsx'\nimport { BlurrableImage } from '../blurrable-image.tsx'\nimport { ClipboardCopyButton } from '../clipboard-copy-button.tsx'\nimport { Grid } from '../grid.tsx'\nimport { H2, H6 } from '../typography.tsx'\n\ntype FeaturedSectionProps = {\n caption?: string\n cta?: string\n subTitle?: string\n title?: string\n permalink?: string\n blurDataUrl?: string\n} & (\n | {\n imageBuilder?: ImageBuilder\n imageUrl?: never\n imageAlt?: never\n }\n | {\n imageBuilder?: never\n /** use the imageBuilder if possible. imageUrl is for things we don't have in cloudinary */\n imageUrl?: string\n imageAlt?: string\n }\n) &\n ({ href?: never; slug: string } | { href: string; slug?: never })\n\nfunction FeaturedSection({\n slug,\n href,\n caption,\n cta = 'Read this article',\n imageBuilder,\n imageUrl,\n imageAlt,\n blurDataUrl,\n title = 'Untitled Post',\n subTitle,\n permalink,\n}: FeaturedSectionProps) {\n const img = imageBuilder ? (\n \n ) : (\n
\n )\n return (\n