spb/countryatlas
Public
TypeScript 57%
Python 38.6%
JavaScript 3.6%
CSS 0.6%
1import type { Metadata } from 'next';2import { permanentRedirect } from 'next/navigation';3import { routes } from '@/lib/site';45export const metadata: Metadata = { robots: { index: false, follow: true } };67/** /data moved to /download (dataset builder). Kept as a permanent redirect for old links. */8export default function DataPage() {9 permanentRedirect(routes.download());10}11