import React from 'react'; import { Stack } from '@/ui/Stack'; import { Text } from '@/ui/Text'; import { Surface } from '@/ui/Surface'; import { Box } from '@/ui/Box'; export function FeatureItem({ text }: { text: string }) { return ( {text} ); } export function ResultItem({ text, color }: { text: string, color: string }) { return ( {text} ); } export function StepItem({ step, text }: { step: number, text: string }) { return ( {step.toString().padStart(2, '0')} {text} ); }