mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-14 18:40:11 +01:00
25 lines
686 B
JavaScript
25 lines
686 B
JavaScript
import Header from "../components/Header";
|
||
import Footer from "../components/Footer";
|
||
|
||
export default function Contact() {
|
||
return (
|
||
<div className="text-black">
|
||
<Header />
|
||
<div className="flex flex-col justify-center mx-auto mt-52 text-center max-w-2x1">
|
||
<h1 className="text-3xl font-bold tracking-tight text-black md:text-5xl">
|
||
404 – Unavailable
|
||
</h1>
|
||
<br />
|
||
<a
|
||
className="w-64 p-1 mx-auto font-bold text-center text-black border border-gray-500 rounded-lg sm:p-4"
|
||
href="/"
|
||
>
|
||
Return Home
|
||
</a>
|
||
</div>
|
||
<div className="mt-64"></div>
|
||
<Footer />
|
||
</div>
|
||
);
|
||
}
|