diff --git a/public/favicon.ico b/public/favicon.ico index a11777c..95740c8 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/index.html b/public/index.html index aa069f2..c40d078 100644 --- a/public/index.html +++ b/public/index.html @@ -7,7 +7,7 @@ - React App + Tatum React Demo Application diff --git a/public/logo192.png b/public/logo192.png index fc44b0a..0e91821 100644 Binary files a/public/logo192.png and b/public/logo192.png differ diff --git a/public/logo512.png b/public/logo512.png index a4e47a6..7cf66b3 100644 Binary files a/public/logo512.png and b/public/logo512.png differ diff --git a/public/manifest.json b/public/manifest.json index 080d6c7..356a094 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,6 +1,6 @@ { - "short_name": "React App", - "name": "Create React App Sample", + "short_name": "Tatum Demo", + "name": "Tatum React Demo Application", "icons": [ { "src": "favicon.ico", diff --git a/src/Header.tsx b/src/Header.tsx index 33c8cf5..12edfe9 100644 --- a/src/Header.tsx +++ b/src/Header.tsx @@ -1,8 +1,8 @@ -import ethereumlogo from './ethereum-logo.svg'; +import ethereumlogo from './logo.svg'; export function Header() { return ( -
+
Ethereum logo

Ethereum Wallet

diff --git a/src/ethereum-logo.svg b/src/ethereum-logo.svg deleted file mode 100644 index b522435..0000000 --- a/src/ethereum-logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/index.tsx b/src/index.tsx index edfd0b9..7f42474 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2,7 +2,6 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App'; -import reportWebVitals from './reportWebVitals'; const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement); root.render( @@ -10,8 +9,3 @@ root.render( , ); - -// If you want to start measuring performance in your app, pass a function -// to log results (for example: reportWebVitals(console.log)) -// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals -reportWebVitals(); diff --git a/src/logo.svg b/src/logo.svg new file mode 100644 index 0000000..bc0c279 --- /dev/null +++ b/src/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/reportWebVitals.ts b/src/reportWebVitals.ts deleted file mode 100644 index 49a2a16..0000000 --- a/src/reportWebVitals.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { ReportHandler } from 'web-vitals'; - -const reportWebVitals = (onPerfEntry?: ReportHandler) => { - if (onPerfEntry && onPerfEntry instanceof Function) { - import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { - getCLS(onPerfEntry); - getFID(onPerfEntry); - getFCP(onPerfEntry); - getLCP(onPerfEntry); - getTTFB(onPerfEntry); - }); - } -}; - -export default reportWebVitals;