spb/cancerindex
Public
TypeScript 97.2%
SQL 1.5%
CSS 0.6%
JavaScript 0.5%
1import Link from 'next/link';2import { PageHeader } from '@/components/ui/section';34export default function NotFound() {5 return (6 <div className="py-10">7 <PageHeader kicker="404" title="This page does not exist" lede="The entity may not be indexed yet, or the identifier may have been merged or deprecated. Try the search, or browse the taxonomy." />8 <div className="flex gap-4 text-[14px]">9 <Link href="/cancers" className="ci-link">10 Browse cancers11 </Link>12 <Link href="/taxonomy" className="ci-link">13 Taxonomy14 </Link>15 <Link href="/search" className="ci-link">16 Search17 </Link>18 </div>19 </div>20 );21}22