-
Notifications
You must be signed in to change notification settings - Fork 16
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
Showing
10 changed files
with
319 additions
and
234 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { type AppType, CURRENT_APP_TYPE } from './appType' | ||
|
||
export const copy = { | ||
FUNKE_WALLET: { | ||
about: { | ||
description: `This app was created by Animo Solutions in the context of the SPRIN-D Funke ‘EUDI Wallet Prototypes’. It | ||
serves as a prototype for future wallet providers. All code is available under Apache 2.0.`, | ||
emailHeader: 'Reach out from Funke EUDI Wallet', | ||
}, | ||
}, | ||
PARADYM_WALLET: { | ||
about: { | ||
description: | ||
'This app was created by Animo Solutions as a companion app for Paradym. All code is available under Apache 2.0.', | ||
emailHeader: 'Reach out from Paradym Wallet', | ||
}, | ||
}, | ||
} satisfies Record<AppType, Record<string, unknown>> | ||
|
||
export function useAppCopy() { | ||
return copy[CURRENT_APP_TYPE] | ||
} |
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.