import { motion } from 'motion/react'; import { ArrowRight } from 'lucide-react'; import { t } from '../i18n'; import { DASHBOARD_PATH } from '../routes'; import { SectionHeading } from './SectionHeading'; const STEPS = [ { time: '0:00', n: 1 }, { time: '0:40', n: 2 }, { time: '2:00', n: 3 }, { time: '3:30', n: 4 }, { time: '5:00', n: 5 }, ] as const; export const FirstFive = () => (
);