drawDB/src/pages/NotFound.jsx
2025-02-15 01:54:45 +04:00

37 lines
943 B
JavaScript

import { socials } from "../data/socials";
export default function NotFound() {
return (
<div className="p-3 space-y-2">
<p>hey there!</p>
<p>looking for something you couldn&apos;t find?</p>
<p>
check out the{" "}
<a className="text-blue-600" href={socials.docs}>
docs
</a>
,{" "}
<a className="text-blue-600" href="mailto:drawdb@outlook.com">
shoot us an email
</a>{" "}
or{" "}
<a className="text-blue-600" href={socials.discord}>
a message on discord
</a>
</p>
<br />
<p className="opacity-70">
* to create a relationship hold the blue dot of a field and drag it
towards the field you want to connect it to
</p>
<a
className="text-blue-600"
href={`${socials.docs}/create-diagram#relationships`}
>
see here
</a>
</div>
);
}