diff --git a/src/assets/images/BNB.png b/src/assets/images/BNB.png new file mode 100644 index 00000000..e38d3ace Binary files /dev/null and b/src/assets/images/BNB.png differ diff --git a/src/utils/config.ts b/src/utils/config.ts index 83387022..175d5c70 100644 --- a/src/utils/config.ts +++ b/src/utils/config.ts @@ -1,6 +1,6 @@ const config = { CENTRE: { - id: "9be0b130-c92c-11eb-954f-f54e30975c19", + id: "38d84e50-3cd3-11ee-b28c-710a72b26aab", }, URL: { WEB: "https://edtify.com/", diff --git a/tsconfig.json b/tsconfig.json index e1e0ae2b..a6769b9b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,10 +2,16 @@ "compilerOptions": { "baseUrl": "./", "paths": { - "@src/*": ["src/*"] + "@src/*": [ + "src/*" + ] }, "target": "es5", - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "skipLibCheck": true, "strict": true, @@ -19,6 +25,12 @@ "jsx": "preserve", "incremental": true }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "src/pages/404.js"], - "exclude": ["node_modules"] + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx" + ], + "exclude": [ + "node_modules" + ] }