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