'use client'; import React from 'react'; import { RefreshCw, Home, LifeBuoy } from 'lucide-react'; import { Box } from '@/ui/Box'; import { Button } from '@/ui/Button'; import { Icon } from '@/ui/Icon'; interface RecoveryActionsProps { onRetry: () => void; onHome: () => void; } /** * RecoveryActions * * Provides primary and secondary recovery paths for the user. * Part of the 500 route redesign. */ export function RecoveryActions({ onRetry, onHome }: RecoveryActionsProps) { return ( ); }