Skip to content

Commit

Permalink
Update logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Superior126 committed Dec 24, 2023
1 parent 0571502 commit 97aa628
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 19 deletions.
Binary file removed public/favicon.ico
Binary file not shown.
Binary file added public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="icon" href="%PUBLIC_URL%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
Expand Down
19 changes: 1 addition & 18 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,7 @@
{
"short_name": "Simple HTTP",
"name": "Simple HTTP",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"start_url": "./",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
Expand Down
5 changes: 5 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
.logo {
width: 50px;
height: 50px;
}

.header {
text-align: center;
margin-top: 100px;
Expand Down
2 changes: 2 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { useEffect, useState } from 'react';
import './App.css';
import './spinners.css';
import logo from './assets/logo.png';

function RequestBody({ method, bodyFormat, setBodyFormat }) {
// Hold form data entries
Expand Down Expand Up @@ -308,6 +309,7 @@ function App() {
return (
<div className='app' id='main-user-interface'>
<div className='header'>
<img src={logo} alt='logo' className='logo' />
<h1>Simple HTTP</h1>
<p>Simple HTTP is a web app that allows you to send http requests to any URL of your choice.</p>
</div>
Expand Down
Binary file added src/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 97aa628

Please sign in to comment.