import { Star } from "@components/Stars.tsx"; import { IconArrowNarrowLeft, IconEdit, IconExternalLink, } from "@components/icons.tsx"; import Image from "@components/Image.tsx"; import { GenericResource } from "@lib/types.ts"; export function RecipeHero( { data, subline, backlink, editLink }: { backlink: string; subline?: (string | { title: string; href: string })[]; editLink?: string; data: GenericResource; }, ) { const { meta: { image } = {} } = data; console.log({ meta: data.meta }); return (
); }