-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #622 from credebl/develop
Develop to Qa
- Loading branch information
Showing
37 changed files
with
288 additions
and
264 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 |
---|---|---|
@@ -1,5 +1,20 @@ | ||
PUBLIC_BASE_URL= | ||
PUBLIC_CRYPTO_PRIVATE_KEY= | ||
PUBLIC_SUPABASE_URL= | ||
PUBLIC_SUPABASE_KEY= | ||
PUBLIC_SUPABASE_JWT_SECRET= | ||
|
||
PUBLIC_SHOW_NAME_AS_LOGO= # Please provide true if you want to give platform name with logo | ||
|
||
PUBLIC_PLATFORM_NAME= # Please specify your paltform name | ||
PUBLIC_PLATFORM_LOGO= # Please specify your logo file link | ||
PUBLIC_POWERED_BY= # Please specify your powered by org name | ||
PUBLIC_PLATFORM_WEB_URL= # Please specify your platform web URL | ||
PUBLIC_POWERED_BY_URL= # Please specify your support URL | ||
PUBLIC_PLATFORM_DOCS_URL= # Please specify your documentation URL | ||
PUBLIC_PLATFORM_GIT= # Please specify your Github URL | ||
PUBLIC_PLATFORM_SUPPORT_EMAIL= # Please specify your support email | ||
PUBLIC_PLATFORM_TWITTER_URL= # Please specify your twitter URL | ||
PUBLIC_PLATFROM_DISCORD_SUPPORT= # Please specify your discord support url | ||
|
||
|
||
|
||
|
||
|
File renamed without changes
File renamed without changes
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,22 @@ | ||
import React from 'react'; | ||
import { envConfig } from '../config/envConfig'; | ||
|
||
const LogoFile = () => { | ||
return ( | ||
<> | ||
<img | ||
src={envConfig.PLATFORM_DATA.logo} | ||
className="h-8 mr-3" | ||
alt={`${envConfig.PLATFORM_DATA.name} logo`} | ||
/> | ||
{envConfig.PLATFORM_DATA.nameAsLogo === 'true' && ( | ||
<span className="self-center text-xl font-semibold sm:text-2xl whitespace-nowrap dark:text-white"> | ||
{envConfig.PLATFORM_DATA.name} | ||
</span> | ||
)} | ||
</> | ||
|
||
) | ||
} | ||
|
||
export default LogoFile; |
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.