'use client'; import { Button } from '@/ui/Button'; import { Stack } from '@/ui/primitives/Stack'; import { Text } from '@/ui/Text'; 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 ( ); }