-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: review closing sections on feature pages (#389)
- Loading branch information
Showing
11 changed files
with
329 additions
and
62 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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
--- | ||
import SlotByFramework from "@/components/SlotByFramework"; | ||
import { LinkCard } from "@astrojs/starlight/components"; | ||
--- | ||
|
||
<SlotByFramework client:load> | ||
<LinkCard | ||
slot="bun" | ||
title="SDK reference" | ||
href="/reference/bun" | ||
description="Bun SDK reference guide." | ||
/> | ||
<LinkCard | ||
slot="bun-hono" | ||
title="SDK reference" | ||
href="/reference/bun" | ||
description="Bun SDK reference guide." | ||
/> | ||
<LinkCard | ||
slot="deno" | ||
title="SDK reference" | ||
href="/reference/nodejs" | ||
description="Node.js SDK reference guide." | ||
/> | ||
<LinkCard | ||
slot="nest-js" | ||
title="SDK reference" | ||
href="/reference/nestjs" | ||
description="NestJS SDK reference guide." | ||
/> | ||
<LinkCard | ||
slot="next-js" | ||
title="SDK reference" | ||
href="/reference/nextjs" | ||
description="Next.js SDK reference guide." | ||
/> | ||
<LinkCard | ||
slot="node-js" | ||
title="SDK reference" | ||
href="/reference/nodejs" | ||
description="Node.js SDK reference guide." | ||
/> | ||
<LinkCard | ||
slot="node-js-express" | ||
title="SDK reference" | ||
href="/reference/nodejs" | ||
description="Node.js SDK reference guide." | ||
/> | ||
<LinkCard | ||
slot="node-js-hono" | ||
title="SDK reference" | ||
href="/reference/nodejs" | ||
description="Node.js SDK reference guide." | ||
/> | ||
<LinkCard | ||
slot="remix" | ||
title="SDK reference" | ||
href="/reference/remix" | ||
description="Remix SDK reference guide." | ||
/> | ||
<LinkCard | ||
slot="sveltekit" | ||
title="SDK reference" | ||
href="/reference/remix" | ||
description="SvelteKit SDK reference guide." | ||
/> | ||
</SlotByFramework> |
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 |
---|---|---|
|
@@ -41,6 +41,7 @@ import SlotByFramework from "@/components/SlotByFramework"; | |
import FrameworkName from "@/components/FrameworkName"; | ||
import FAQs from "/src/components/FAQs.astro"; | ||
import Comments from "/src/components/Comments.astro"; | ||
import SdkReferenceLinkByFramework from "/src/components/SdkReferenceLinkByFramework.astro"; | ||
|
||
import BunStep1 from "@/snippets/bot-protection/quick-start/bun/Step1.mdx"; | ||
import BunStep2 from "@/snippets/bot-protection/quick-start/bun/Step2.mdx"; | ||
|
@@ -153,24 +154,39 @@ Check out our [full list of bots](https://arcjet.com/bot-list). | |
|
||
## What next? | ||
|
||
Arcjet can be used with specific rules on individual routes or as general | ||
protection on your entire application. You can customize bot protection, rate | ||
limiting for your API and minimize fraudulent registrations with the signup form | ||
protection. | ||
|
||
<CardGrid> | ||
<LinkCard | ||
title="Bot protection reference" | ||
href="/bot-protection/reference" | ||
description="Full details about bot protection." | ||
></LinkCard> | ||
/> | ||
<LinkCard | ||
title="Testing" | ||
href="/testing" | ||
description="Write tests for your rules." | ||
/> | ||
</CardGrid> | ||
|
||
### Explore | ||
|
||
Arcjet can be used with specific rules on individual routes or as general | ||
protection on your entire application. You can setup rate limiting for your | ||
API, minimize fraudulent registrations with the signup form protection and more. | ||
|
||
<CardGrid> | ||
<LinkCard | ||
title="Example apps" | ||
href="https://github.com/arcjet/arcjet-js/tree/main/examples" | ||
description="Check out the examples." | ||
/> | ||
<LinkCard | ||
title="Learn how Arcjet works" | ||
href="/architecture" | ||
description="Arcjet's architecture." | ||
/> | ||
<SdkReferenceLinkByFramework /> | ||
</CardGrid> | ||
|
||
## Get help | ||
|
||
Need help with anything? Email [email protected] to get support from our | ||
|
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 |
---|---|---|
|
@@ -33,6 +33,7 @@ ajToc: | |
--- | ||
|
||
import { LinkCard, CardGrid } from "@astrojs/starlight/components"; | ||
import SdkReferenceLinkByFramework from "/src/components/SdkReferenceLinkByFramework.astro"; | ||
import WhatIsArcjet from "/src/components/WhatIsArcjet.astro"; | ||
import SlotByFramework from "@/components/SlotByFramework"; | ||
import FrameworkName from "@/components/FrameworkName"; | ||
|
@@ -130,11 +131,6 @@ The requests will also show in the [Arcjet dashboard](https://app.arcjet.com). | |
|
||
## What next? | ||
|
||
Arcjet can be used with specific rules on individual routes or as general | ||
protection on your entire application. You can customize bot protection, rate | ||
limiting for your API and minimize fraudulent registrations with the signup form | ||
protection. | ||
|
||
<CardGrid> | ||
<LinkCard | ||
title="Email validation reference" | ||
|
@@ -148,6 +144,27 @@ protection. | |
/> | ||
</CardGrid> | ||
|
||
### Explore | ||
|
||
Arcjet can be used with specific rules on individual routes or as general | ||
protection on your entire application. You can setup bot protection, rate | ||
limiting for your API, minimize fraudulent registrations with the signup form | ||
protection and more. | ||
|
||
<CardGrid> | ||
<LinkCard | ||
title="Example apps" | ||
href="https://github.com/arcjet/arcjet-js/tree/main/examples" | ||
description="Check out the examples." | ||
/> | ||
<LinkCard | ||
title="Learn how Arcjet works" | ||
href="/architecture" | ||
description="Arcjet's architecture." | ||
/> | ||
<SdkReferenceLinkByFramework /> | ||
</CardGrid> | ||
|
||
## Get help | ||
|
||
Need help with anything? Email [email protected] to get support from our | ||
|
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
Oops, something went wrong.