import { Lightbulb } from 'lucide-react' import type { GuideSection as GuideSectionType } from '@/data/guides' interface GuideSectionProps { section: GuideSectionType index: number } export function GuideSection({ section, index }: GuideSectionProps) { return (

{index + 1} {section.title}

    {section.steps.map((step, i) => (
  1. {i + 1}.

    $1') }} /> {step.detail && (

    {step.detail}

    )} {step.tip && (

    Tip: {step.tip}

    )}
  2. ))}
) }