+ {/* Hero */}
+
+ Grants
+
+
+ Build private payments. Get funded.
+
+
+ Wraith runs a grant program supported by{' '}
+
+ Drips
+ {' '}
+ recurring revenue and external ecosystem funding. Each wave funds teams building stealth
+ address infrastructure, SDK integrations, and privacy-preserving payment tooling.
+
+
+
+
+ {/* Current wave */}
+ {currentWave && (
+
+ Current wave
+
+
+
+
+ {currentWave.name}
+
+
+ {currentWave.description}
+
+
+
+
+ Budget
+
+
+ {currentWave.budget}
+
+
+ {currentWave.fundingSource}
+
+
+
+
+
+
+ {currentWave.status === 'open' ? 'Open for applications' : currentWave.status}
+
+
+ {currentWave.rewardRange} per grant
+
+
+
+
+
+
+ {/* Eligibility */}
+
+
+
+ Eligibility
+
+
+ {currentWave.eligibility.map((item) => (
+
+
+ {item}
+
+ ))}
+
+
+
+
+ Review criteria
+
+
+ {currentWave.reviewCriteria.map((item) => (
+
+
+ {item}
+
+ ))}
+
+
+
+
+ )}
+
+ {/* Past waves */}
+ {pastWaves.length > 0 && (
+
+ Past waves
+
+ {pastWaves.map((wave) => (
+
+
+
+
+ {wave.name}
+
+
+ {wave.budget} · {wave.fundingSource}
+
+
+
+ Closed
+
+
+
+ {wave.highlights && wave.highlights.length > 0 && (
+
+ {wave.highlights.map((highlight) => (
+
+
+ {highlight}
+
+ ))}
+
+ )}
+
+ {wave.recipients && wave.recipients.length > 0 && (
+
+
+ Recipients
+
+
+ {wave.recipients.map((r) => (
+
+ {r.name}
+ {r.project}
+
+ {r.grantAmount}
+
+
+ ))}
+
+
+ )}
+
+ ))}
+
+
+ )}
+
+ {/* FAQ */}
+ {faqEntries.length > 0 && (
+
+ FAQ
+
+ Frequently asked questions
+
+
+ {faqEntries.map((entry) => {
+ const isOpen = openFaqId === entry.id;
+ return (
+
+
+
+ setOpenFaqId(isOpen ? null : entry.id)}
+ className="flex w-full items-center justify-between text-left"
+ >
+ {entry.question}
+
+ {isOpen ? 'Hide' : 'Show'}
+
+
+
+
+ {isOpen && (
+
+ )}
+
+ );
+ })}
+
{' '}
+
+ )}
+
+ );
+}