import { ChevronRightIcon } from "@heroicons/react/solid"; import { BookOpenIcon, CheckIcon, CodeIcon, DocumentTextIcon } from "@heroicons/react/outline"; import { useRouter } from "next/router"; import React from "react"; import Link from "next/link"; import Head from "next/head"; const links = [ { title: "Documentation", description: "Learn how to integrate our tools with your app", icon: DocumentTextIcon, href: "https://docs.calendso.com", }, { title: "API Reference", description: "A complete API reference for our libraries", icon: CodeIcon, href: "https://api.docs.calendso.com", }, { title: "Blog", description: "Read our latest news and articles", icon: BookOpenIcon, href: "https://calendso.com/blog", }, ]; export default function Custom404() { const router = useRouter(); const username = router.asPath.replace("%20", "-"); return ( <> 404: This page could not be found.

404 error

This page does not exist.

The username calendso.com{username} is still available. Register now.

Popular pages

Or go back home
); }