'use client'; import { Stack } from '@/ui/primitives/Stack'; import { Text } from '@/ui/Text'; import React from 'react'; interface NotFoundHelpLinksProps { links: Array<{ label: string; href: string }>; } /** * NotFoundHelpLinks * * Semantic component for secondary navigation on the 404 page. * Styled as technical metadata links. */ export function NotFoundHelpLinks({ links }: NotFoundHelpLinksProps) { return ( {links.map((link, index) => ( {link.label} {index < links.length - 1 && ( )} ))} ); }