import Link from "next/link"; import { FaDiscord, FaGithub, FaEdit } from "react-icons/fa"; import { FaXTwitter } from "react-icons/fa6"; import { Button } from "@/components/ui/button"; import { cn } from "@/lib/utils"; const socials = [ { icon: FaDiscord, href: "https://discord.com/invite/6dffbvGU3D", }, { icon: FaGithub, href: "https://github.com/CopilotKit/CopilotKit", }, { icon: FaXTwitter, href: "https://x.com/copilotkit", }, ]; export type SocialProps = { className?: string; }; export function Socials({ className }: SocialProps) { return (
{socials.map((social, index) => ( ))}
); }