// Archive is legacy/test data only — not part of the live signal stack. // noindex keeps it out of search results (duplicate/thin content risk) // while keeping it accessible to logged-in users for inspection. import type { Metadata } from 'next' import ArchivePageClient from './ArchivePageClient' export const metadata: Metadata = { robots: { index: false, follow: false }, } export default function ArchivePage() { return }