-
Notifications
You must be signed in to change notification settings - Fork 46
Add WalletChan and Cash Game Host partners #404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -80,6 +80,8 @@ import Web3Identity from 'public/assets/partners/web3identity.jpg' | |
| import EnsView from 'public/assets/partners/ensview.jpg' | ||
| import Status from 'public/assets/partners/status.png' | ||
| import DMPay from 'public/assets/partners/dmpay.jpg' | ||
| import WalletChan from 'public/assets/partners/walletchan.jpg' | ||
| import CashGameHost from 'public/assets/partners/cashgamehost.jpg' | ||
|
|
||
| export const INTEGRATIONS = [ | ||
| { | ||
|
|
@@ -142,6 +144,11 @@ export const INTEGRATIONS = [ | |
| url: 'https://yodl.me/', | ||
| logo: Yodl, | ||
| }, | ||
| { | ||
| name: 'Walletchan', | ||
| url: 'https://walletchan.com/', | ||
| logo: WalletChan, | ||
| }, | ||
| { | ||
| name: 'Vision', | ||
| url: 'https://vision.io/', | ||
|
|
@@ -482,6 +489,11 @@ export const INTEGRATIONS = [ | |
| url: 'https://app.dmpay.me/', | ||
| logo: DMPay, | ||
| }, | ||
| { | ||
| name: 'Cash Game Host', | ||
| url: 'https://cash-game-organizer-app.vercel.app/', | ||
| logo: CashGameHost, | ||
| }, | ||
|
Comment on lines
+492
to
+496
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Description: Verify the Cash Game Host URL is accessible and appears to be production-ready
# Check if the URL is accessible
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" "https://cash-game-organizer-app.vercel.app/"
# Also check if there might be a custom domain by looking at the HTML title/meta
curl -s "https://cash-game-organizer-app.vercel.app/" | grep -i -E "<title>|<meta.*name=\"description\"" | head -5Repository: ethereumfollowprotocol/app Length of output: 2689 Update Cash Game Host URL to the correct production domain. The URL should be 🤖 Prompt for AI Agents |
||
| ] as { | ||
| name: string | ||
| url: string | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.