import { createFileRoute } from "@tanstack/react-router"; import { Check, Copy } from "lucide-react"; import { useState } from "react"; import { toast } from "sonner"; const SUPPORT_EMAIL = "ben@openseo.so"; const DISCORD_URL = "https://discord.gg/c9uGs3cFXr"; const GITHUB_URL = "https://github.com/every-app/open-seo"; export const Route = createFileRoute("/_app/support")({ component: SupportPage, }); function SupportPage() { const [copied, setCopied] = useState(false); const handleCopy = async () => { await navigator.clipboard.writeText(SUPPORT_EMAIL); toast.success("Email copied to clipboard"); setCopied(true); setTimeout(() => setCopied(false), 2000); }; return (

Help & Community

We want to hear from you

We want to talk to you! We're super open to feedback and want to learn how you work so we can make OpenSEO better.

Email

Send ideas, problems, questions, or feedback directly.

Discord

Ask for help, share ideas and learn from the community.

Join the Discord

GitHub Issues

Report bugs or request features on GitHub.

Open an issue
); }