> ## Documentation Index > Fetch the complete documentation index at: https://docs.layerzero.network/llms.txt > Use this file to discover all available pages before exploring further. # Introduction > Official LayerZero Documentation. Build omnichain applications with crosschain messaging. Developer guides, API references, and deployment resources. export const IconCard = ({title, text, icon, href, accent = "purple"}) => { const accentConfig = { purple: { iconBg: "bg-[rgba(173,70,255,0.1)]", iconColor: "text-[#9333ea] dark:text-[#c084fc]", titleHover: "group-hover:text-[#9333ea] dark:group-hover:text-[#c084fc]", arrowHover: "group-hover:text-[#9333ea] dark:group-hover:text-[#c084fc]", borderHover: "group-hover:border-[#9333ea] dark:group-hover:border-[#c084fc]" }, stargate: { iconBg: "bg-[rgba(15,185,131,0.1)]", iconColor: "text-[#10a073] dark:text-[#0fb983]", titleHover: "group-hover:text-[#10a073] dark:group-hover:text-[#0fb983]", arrowHover: "group-hover:text-[#10a073] dark:group-hover:text-[#0fb983]", borderHover: "group-hover:border-[#10a073] dark:group-hover:border-[#0fb983]" }, gray: { iconBg: "bg-[rgba(163,163,163,0.1)]", iconColor: "text-[#737373] dark:text-[#a1a1a1]", titleHover: "group-hover:text-[#525252] dark:group-hover:text-[#d4d4d4]", arrowHover: "group-hover:text-[#525252] dark:group-hover:text-[#d4d4d4]", borderHover: "group-hover:border-[#a1a1a1] dark:group-hover:border-[#525252]" } }; const colors = accentConfig[accent] || accentConfig.purple; const defaultIcon =
; const arrowIcon =
; const cardClasses = `flex flex-col p-4 rounded-lg bg-white dark:bg-[#0a0a0a] border-2 border-[#e5e5e5] dark:border-[#2b2b2b] transition-all ${colors.borderHover} h-full`; const content =
{}
{}
{icon ?
: defaultIcon}
{}
{arrowIcon}
{}
{title}
{} {text &&
{text}
}
; if (href) { return
{content}
; } return content; };
LayerZero Documentation
Crosschain interoperability, blockchain infrastructure, and financial applications
Blockchain Infrastructure
Crosschain & Interoperability
Financial Applications & Services
I'm Just Exploring