feat: Add README, refactor Cryptomus feature flag to use environment variable, and include GitHub link in header.

This commit is contained in:
Yusuf İpek
2025-11-20 14:45:24 +03:00
parent f482a1ee7a
commit 235238171b
4 changed files with 105 additions and 24 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
import { RepoHubApp } from '@/components/RepoHubApp'
export default function HomePage() {
return <RepoHubApp />
const cryptomusEnabled = process.env.CRYPTOMUS_ENABLED !== 'false'
return <RepoHubApp cryptomusEnabled={cryptomusEnabled} />
}