Community
Connect with other cmux users and the team behind it.
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}
);
}
export default function CommunityPage() {
return (
{name}
{description}
{action} →
Connect with other cmux users and the team behind it.