Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions pages/home/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ title: "Frequently Asked Questions"
description: "Frequently asked questions about Arcade"
---

import { Button } from "@/components/ui/button";
import {
MessagesSquare
} from "lucide-react";
import Link from "next/link";
import { Tabs } from "nextra/components";

# Frequently Asked Questions
Expand Down Expand Up @@ -97,3 +102,19 @@ if (auth_response.status !== "completed") {
```
</Tabs.Tab>
</Tabs>

## Your question is not here?

Please go to the discussions page on GitHub. Someone else may have asked something similar already. If not, please start a new discussion and we'll get to it as soon as possible.

<Button
asChild
size="lg"
className="h-16 bg-primary px-6 text-white hover:bg-primary/90"
>
<Link href="https://github.com/ArcadeAI/arcade-ai/discussions">
<MessagesSquare className="h-5 w-5" />
<span className="pl-1 pb-1">Get Answers on GitHub</span>
</Link>
</Button>