rallly/components/error-page.tsx
2022-04-16 10:26:53 +01:00

52 lines
1.5 KiB
TypeScript

import Head from "next/head";
import Link from "next/link";
import * as React from "react";
import Button from "@/components/button";
import Chat from "@/components/icons/chat.svg";
import EmojiSad from "@/components/icons/emoji-sad.svg";
import { showCrispChat } from "./crisp-chat";
import StandardLayout from "./standard-layout";
export interface ComponentProps {
icon?: React.ComponentType<{ className?: string }>;
title: string;
description: string;
}
const ErrorPage: React.VoidFunctionComponent<ComponentProps> = ({
icon: Icon = EmojiSad,
title,
description,
}) => {
return (
<StandardLayout>
<div className="flex h-full max-w-full items-center justify-center bg-gray-50 px-4 py-8 lg:w-[1024px]">
<Head>
<title>{title}</title>
<meta name="robots" content="noindex,nofollow" />
</Head>
<div className="flex items-start">
<div className="text-center">
<Icon className="mb-4 inline-block w-24 text-slate-400" />
<div className="text-3xl font-bold uppercase text-indigo-500 ">
{title}
</div>
<p>{description}</p>
<div className="flex justify-center space-x-3">
<Link href="/" passHref={true}>
<a className="btn-default">Go to home</a>
</Link>
<Button icon={<Chat />} onClick={showCrispChat}>
Start chat
</Button>
</div>
</div>
</div>
</div>
</StandardLayout>
);
};
export default ErrorPage;