-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf25a5d
commit e8c218b
Showing
23 changed files
with
105 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const cardSettings = {} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import dynamic from "next/dynamic" | ||
import LoadingRewardPreview from "./components/LoadingRewardPreview" | ||
import { RewardComponentMap, RewardPreview } from "./types" | ||
|
||
export const RewardPreviews = { | ||
GATHER_TOWN: dynamic(() => import("rewards/components/GatherPreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
GITHUB: dynamic(() => import("rewards/components/GitHubPreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
GOOGLE: dynamic(() => import("rewards/components/GooglePreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
ERC20: dynamic(() => import("rewards/components/TokenPreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
UNIQUE_TEXT: dynamic(() => import("rewards/components/UniqueTextPreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
POLYGON_ID: dynamic(() => import("rewards/components/PolygonIDPreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
CONTRACT_CALL: dynamic(() => import("rewards/components/ContractCallPreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
FORM: dynamic(() => import("rewards/components/FormPreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
TELEGRAM: dynamic(() => import("rewards/components/TelegramPreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
DISCORD: dynamic(() => import("rewards/components/DiscordPreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
POAP: dynamic(() => import("rewards/components/PoapPreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
TEXT: dynamic(() => import("rewards/components/SecretTextPreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
POINTS: dynamic(() => import("rewards/components/PointsPreview"), { | ||
ssr: false, | ||
loading: LoadingRewardPreview, | ||
}), | ||
} as const satisfies RewardComponentMap<RewardPreview> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.