"use client"; import { HmacRecipeBlock } from "./shared/HmacRecipeBlock"; interface HowItWorksSidebarProps { t: (key: string) => string; showCustomNote?: boolean; } export function HowItWorksSidebar({ t, showCustomNote }: HowItWorksSidebarProps) { const steps = [ t("howItWorks.step1"), t("howItWorks.step2"), t("howItWorks.step3"), t("howItWorks.step4"), ]; return ( ); }