drawDB/src/pages/NotFound.jsx

37 lines
943 B
React
Raw Normal View History

2025-02-15 05:54:45 +08:00
import { socials } from "../data/socials";
2024-04-06 18:59:39 +08:00
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>
2025-02-15 05:54:45 +08:00
check out the{" "}
<a className="text-blue-600" href={socials.docs}>
docs
</a>
,{" "}
2024-04-06 18:59:39 +08:00
<a className="text-blue-600" href="mailto:drawdb@outlook.com">
shoot us an email
</a>{" "}
or{" "}
2025-02-15 05:54:45 +08:00
<a className="text-blue-600" href={socials.discord}>
2024-04-06 18:59:39 +08:00
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>
2025-02-15 05:54:45 +08:00
<a
className="text-blue-600"
href={`${socials.docs}/create-diagram#relationships`}
>
see here
</a>
2024-04-06 18:59:39 +08:00
</div>
);
}