From 133620918adce47259507c4e494d7d21dedfa696 Mon Sep 17 00:00:00 2001 From: Rafael Bradley Date: Mon, 7 Sep 2026 00:52:16 -0300 Subject: [PATCH] Remove IDs from quickstart --- content/quick-start.mdx | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/content/quick-start.mdx b/content/quick-start.mdx index b2e1cd0..bfeaf9a 100644 --- a/content/quick-start.mdx +++ b/content/quick-start.mdx @@ -136,7 +136,7 @@ you little to no time. You can then use the hook in your client components: - + ```ts "use client"; @@ -147,7 +147,7 @@ you little to no time. } ``` - + ```ts import { useChallenge } from "@duckity/react"; @@ -156,7 +156,7 @@ you little to no time. } ``` - + ```ts import { json } from "@remix-run/node"; // Or cloudflare/deno import { useLoaderData } from "@remix-run/react"; @@ -176,7 +176,7 @@ you little to no time. } ``` - + ```ts import { useChallenge } from "@duckity/react"; @@ -185,7 +185,7 @@ you little to no time. } ``` - + ```ts import { useChallenge } from "@duckity/react"; @@ -194,7 +194,7 @@ you little to no time. } ``` - + ```ts import { useChallenge } from "@duckity/react"; @@ -253,17 +253,17 @@ you little to no time. {/* prettier-ignore */} - + ```sh pip install duckity ``` - + ```sh uv add duckity ``` - + ```sh poetry add duckity ``` @@ -273,7 +273,7 @@ you little to no time. Solving a challenge only requires your protection profile ID. - + ```py import duckity @@ -283,7 +283,7 @@ you little to no time. The CPU-intensive part of solving the challenge is done in a `ProcessPoolExecutor()`. Neither the GIL nor the async event loop will be blocked. - + ```py import asyncio @@ -422,17 +422,17 @@ Once you have a solution token in your server, validating it is quite easy. {/* prettier-ignore */} - + ```sh pip install duckity ``` - + ```sh uv add duckity ``` - + ```sh poetry add duckity ``` @@ -442,7 +442,7 @@ Once you have a solution token in your server, validating it is quite easy. Once you have done it, validate the solution token as follows: - + ```py import duckity @@ -456,7 +456,7 @@ Once you have a solution token in your server, validating it is quite easy. ) ``` - + ```py import asyncio