SPB Git forge

spb/countryatlas

Public
20commits 1branches 0releases
268.3 MBsize
maindefault branch
12 days agolast push
TypeScript 57% Python 38.6% JavaScript 3.6% CSS 0.6%
382 B · 11 lines tsx
Raw Blame History
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