import { Box, Button, Center, Link, Text } from "@chakra-ui/react"; import { AlertTriangle } from "lucide-react"; import Head from "next/head"; import { EmptyState } from "src/components/EmptyState"; import { getTransparentHeaderLayout } from "src/components/Layout"; export { getDefaultStaticProps as getStaticProps } from "src/lib/default_static_props"; function Error() { return ( <> 404 - Open Assistant
If you were trying to contribute data but ended up here, please file a bug.
); } Error.getLayout = getTransparentHeaderLayout; export default Error;