-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
55 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
User-agent: * | ||
Allow: / | ||
Allow: /editor | ||
Allow: /shortcuts | ||
Allow: /templates | ||
Disallow: /bug-report | ||
Disallow: /survey |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export const socials = { | ||
docs: "https://drawdb-io.github.io/docs", | ||
discord: "https://discord.gg/BrjZgNrmR6", | ||
twitter: "https://x.com/drawDB_", | ||
github: "https://github.com/drawdb-io/drawdb", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
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't find?</p> | ||
<p> | ||
check out the{" "} | ||
<a className="text-blue-600" href={socials.docs}> | ||
docs | ||
</a> | ||
,{" "} | ||
<a className="text-blue-600" href="mailto:[email protected]"> | ||
shoot us an email | ||
</a>{" "} | ||
or{" "} | ||
<a | ||
className="text-blue-600" | ||
href="https://discord.gg/BrjZgNrmR6" | ||
> | ||
<a className="text-blue-600" href={socials.discord}> | ||
a message on discord | ||
</a> | ||
</p> | ||
|
@@ -21,6 +25,12 @@ export default function NotFound() { | |
* 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> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.