'use client'; import { Button } from '@/ui/Button'; import { Group } from '@/ui/Group'; import { Text } from '@/ui/Text'; import { StatusDot } from '@/ui/StatusDot'; interface NotFoundActionsProps { primaryLabel: string; onPrimaryClick: () => void; } /** * NotFoundActions * * Semantic component for the primary actions on the 404 page. * Follows "Precision Racing Minimal" theme with crisp styling. */ export function NotFoundActions({ primaryLabel, onPrimaryClick }: NotFoundActionsProps) { return ( ); }