ekyc

Electronic KYC process with uploading ID document using OAuth 2.1 (experimental)
Log | Files | Refs | README | LICENSE

_404.tsx (501B)


      1 import { Head } from "$fresh/src/runtime/head.ts";
      2 import { PageProps } from "$fresh/src/server/types.ts";
      3 
      4 export default function NotFound(props: PageProps) {
      5   return (
      6     <>
      7       <Head>
      8         <title key="title">KYCID</title>
      9       </Head>
     10       <article style="max-width: 420px; margin-left: auto; margin-right: auto;">
     11         <header style="text-align: center;">
     12           <b>Resource not found</b>
     13         </header>
     14         <code>{props.url.pathname}</code>
     15       </article>
     16     </>
     17   );
     18 }