'use client';
import React from 'react';
import { Check } from 'lucide-react';
import { Box } from '@/ui/Box';
import { Stack } from '@/ui/Stack';
import { Text } from '@/ui/Text';
import { Surface } from '@/ui/Surface';
import { Icon } from '@/ui/Icon';
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}
{text}
);
}