import { cn } from "@multica/ui/lib/utils"; export const githubUrl = "https://github.com/multica-ai/multica"; export const twitterUrl = "https://x.com/MulticaAI"; export function GitHubMark({ className }: { className?: string }) { return ( ); } export function XMark({ className }: { className?: string }) { return ( ); } export function ImageIcon({ className }: { className?: string }) { return ( ); } export function ClaudeCodeLogo({ className }: { className?: string }) { return ( ); } export function CodexLogo({ className }: { className?: string }) { return ( ); } export function OpenClawLogo({ className }: { className?: string }) { return ( ); } export function GeminiCliLogo({ className }: { className?: string }) { return ( ); } export function OpenCodeLogo({ className }: { className?: string }) { return ( ); } export function headerButtonClassName( tone: "ghost" | "solid", variant: "dark" | "light" = "dark", ) { return cn( "inline-flex items-center justify-center gap-2 rounded-[11px] px-4 py-2.5 text-[13px] font-semibold transition-colors", variant === "dark" ? tone === "solid" ? "bg-white text-[#0a0d12] hover:bg-white/92" : "border border-white/18 bg-black/16 text-white backdrop-blur-sm hover:bg-black/24" : tone === "solid" ? "bg-[#0a0d12] text-white hover:bg-[#0a0d12]/88" : "border border-[#0a0d12]/12 bg-white text-[#0a0d12] hover:bg-[#0a0d12]/5", ); } export function heroButtonClassName(tone: "ghost" | "solid") { return cn( "inline-flex items-center justify-center gap-2 rounded-[12px] px-5 py-3 text-[14px] font-semibold transition-colors", tone === "solid" ? "bg-white text-[#0a0d12] hover:bg-white/92" : "border border-white/18 bg-black/16 text-white backdrop-blur-sm hover:bg-black/24", ); }