"use client"; import { GithubOutlined } from "@ant-design/icons"; import { cn } from "@/lib/utils"; type GitHubLinkProps = { className?: string; style?: React.CSSProperties; }; export function GitHubLink({ className, style }: GitHubLinkProps) { return ( ); }