diff --git a/packages/docs/app/routes/guides/links.md b/packages/docs/app/routes/guides/links.md
new file mode 100644
index 0000000..215d434
--- /dev/null
+++ b/packages/docs/app/routes/guides/links.md
@@ -0,0 +1,25 @@
+---
+order: 3
+meta:
+ title: Links
+ description: Using link components
+---
+
+# Links
+
+In Discord, links are a type of button, and they work similarly. Clicking on it leads you to the given URL. They only have one style, and can't be listened to for clicks.
+
+```jsx
+import { Link } from "reacord"
+
+function AwesomeLinks() {
+ return (
+ <>
+
+
+ >
+ )
+}
+```
+
+See the [API reference](/api) for more information.