docs: add ai tooling (#4859)

This commit is contained in:
Bereket Engida
2025-09-23 15:21:16 -07:00
committed by GitHub
parent 0748e1116e
commit 7eefc93c59
3 changed files with 79 additions and 7 deletions

View File

@@ -0,0 +1,29 @@
import Link from "next/link";
export const AddToCursor = () => {
return (
<div className="w-max">
<Link
href="cursor://anysphere.cursor-deeplink/mcp/install?name=Better%20Auth&config=eyJ1cmwiOiJodHRwczovL21jcC5jaG9ua2llLmFpL2JldHRlci1hdXRoL2JldHRlci1hdXRoLWJ1aWxkZXIvbWNwIn0%3D"
className="dark:hidden"
>
<img
src="https://cursor.com/deeplink/mcp-install-dark.svg"
alt="Add Better Auth MCP to Cursor"
height="32"
/>
</Link>
<Link
href="cursor://anysphere.cursor-deeplink/mcp/install?name=Better%20Auth&config=eyJ1cmwiOiJodHRwczovL21jcC5jaG9ua2llLmFpL2JldHRlci1hdXRoL2JldHRlci1hdXRoLWJ1aWxkZXIvbWNwIn0%3D"
className="dark:block hidden"
>
<img
src="https://cursor.com/deeplink/mcp-install-light.svg"
alt="Add Better Auth MCP to Cursor"
height="32"
/>
</Link>
</div>
);
};