drawDB/src/pages/NotFound.jsx

27 lines
673 B
React
Raw Normal View History

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>
<a className="text-blue-600" href="mailto:drawdb@outlook.com">
shoot us an email
</a>{" "}
or{" "}
<a
className="text-blue-600"
2024-04-07 05:20:24 +08:00
href="https://discord.gg/BrjZgNrmR6"
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>
</div>
);
}