import type { TechStackBlockValue } from "@/types/wagtail"; export default function TechStack({ value }: { value: TechStackBlockValue }) { return (
{value.heading && (

{value.heading}

)}
{value.items?.map((item, index) => (
{item.icon && {item.icon}} {item.label}
))}
); }