anything-llm/frontend/src/pages/404.jsx
timothycarambat 27c58541bd inital commit
2023-06-03 19:28:07 -07:00

25 lines
686 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
);
}