Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
16 changes: 15 additions & 1 deletion pages/home/_meta.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Code2, Home, Plug } from "lucide-react";
import { BadgeHelp, Code2, Home, Plug } from "lucide-react";

export default {
"*": {
Expand Down Expand Up @@ -35,6 +35,20 @@ export default {
target: "_blank",
},

"contact-us": {
title: (
<span className="flex items-center gap-2 font-medium">
<BadgeHelp className="size-4" />
Contact us
</span>
),
href: "/contact-us",
theme: {
breadcrumb: false,
pagination: false,
},
},

"-- Getting Started": {
type: "separator",
title: "Using Arcade",
Expand Down
34 changes: 34 additions & 0 deletions pages/home/contact-us.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
title: "Contact Us"
description: "Get support and connect with the Arcade team through various channels"
---

import { Mail, BookOpen, Clock, Shield } from 'lucide-react'
import { SiDiscord, SiGithub } from "@icons-pack/react-simple-icons";

# Contact Us

We're here to help you succeed with Arcade! Choose the support channel that best fits your needs.

### <SiDiscord className="inline-block w-5 h-5 mr-1 -mt-1" /> Discord Community
Our active Discord community is the fastest way to get help:
- Get real-time assistance from the Arcade team
- Connect with fellow developers
- Stay updated on latest features

[Join our Discord Server →](https://discord.gg/GUZEMpEZ9p)

### <SiGithub className="inline-block w-5 h-5 mr-1 -mt-1" /> GitHub Issues
For technical issues, feature requests, and contributions:
- Report bugs with detailed reproduction steps
- Request new features and enhancements
- Contribute to documentation improvements

[Open a GitHub Issue →](https://github.com/ArcadeAI/arcade-ai/issues/new/choose)

### <BookOpen className="inline-block w-5 h-5 mr-1 -mt-1" /> Resources
Before reaching out, you might find your answer in our resources:
- [Documentation](https://docs.arcade.dev) - Comprehensive guides and API references
- [Blog](https://blog.arcade.dev/) - Latest updates and technical articles
- [Examples](https://github.com/ArcadeAI/cookbook) - Examples and guides for using arcade-ai
Copy link
Member

@EricGustin EricGustin Feb 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cookbook repo probably isn't the best place to link to. It's a private repo anyways. ArcadeAI/arcade-ai/examples would be better

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@EricGustin Thank you for catching this. However, I can't find the examples repository.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's inside the arcade-ai repository: https://github.com/ArcadeAI/arcade-ai/tree/main/examples

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!!