import type { Metadata } from "next"; import { SiteHeader } from "../components/site-header"; export const metadata: Metadata = { title: "Community — cmux", description: "Join the cmux community on Discord, Twitter, GitHub, and more", }; function CommunityLink({ href, icon, name, action, description, }: { href: string; icon: React.ReactNode; name: string; action: string; description: string; }) { return (
{icon}
{name}
{description}
{action} →
); } export default function CommunityPage() { return (

Community

Connect with other cmux users and the team behind it.

} /> } /> } /> } /> } />
); }