Skip to content

Commit

Permalink
feat: update application branding
Browse files Browse the repository at this point in the history
Adds ethereum icons, updates name of the application (title etc.) and does overall cleanup.
  • Loading branch information
martinkyselak committed Dec 30, 2023
1 parent 9e93069 commit db8cfca
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 28 deletions.
Binary file modified public/favicon.ico
Binary file not shown.
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
content="A simple demonstration of Tatum API."
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
Expand All @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>Tatum React Demo Application</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Binary file modified public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import ethereumlogo from './ethereum-logo.svg';
import ethereumlogo from './logo.svg';

export function Header() {
return (
<header className="flex flex-col items-center text-slate-50 bg-slate-700 h-40 p-5">
<header className="flex flex-col items-center text-slate-50 bg-slate-700 h-30 p-5">
<img src={ethereumlogo} alt="Ethereum logo" className="w-16 h-16" />
<h1 className="text-xl font-bold">Ethereum Wallet</h1>
</header>
Expand Down
1 change: 0 additions & 1 deletion src/ethereum-logo.svg

This file was deleted.

6 changes: 0 additions & 6 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,10 @@ 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(
<React.StrictMode>
<App />
</React.StrictMode>,
);

// 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();
1 change: 1 addition & 0 deletions src/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 0 additions & 15 deletions src/reportWebVitals.ts

This file was deleted.

0 comments on commit db8cfca

Please sign in to comment.