1
1
mirror of https://git.gay/DeltaStudio/PufokReactApp.git synced 2025-07-18 13:52:25 +07:00

Build version + icons! 🏳️‍🌈

This commit is contained in:
pufok 2025-02-20 03:13:05 +03:00
parent 864a493ed6
commit 3b3f659c3e
7 changed files with 8 additions and 11 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 209 KiB

View File

@ -5,10 +5,6 @@
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" /> <meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!-- <!--
manifest.json provides metadata used when your web app is installed on a manifest.json provides metadata used when your web app is installed on a
@ -24,10 +20,10 @@
work correctly both with client-side routing and a non-root public URL. 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`. Learn how to configure a non-root public URL by running `npm run build`.
--> -->
<title>React App</title> <title>pufok's network</title>
</head> </head>
<body> <body>
<noscript>You need to enable JavaScript to run this app.</noscript> <noscript>You need to enable JavaScript to run this site.</noscript>
<div id="root"></div> <div id="root"></div>
<!-- <!--
This HTML file is a template. This HTML file is a template.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 43 KiB

View File

@ -1,5 +1,5 @@
{ {
"short_name": "React App", "short_name": "pufok's network",
"name": "Create React App Sample", "name": "Create React App Sample",
"icons": [ "icons": [
{ {

View File

@ -1,5 +1,5 @@
body { body {
font-family: Arial, sans-serif; font-family: jetbrains-mono, monospace;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
@ -21,7 +21,8 @@ body {
.footer { .footer {
text-align: center; text-align: center;
padding: 1rem; padding: 1.5rem;
background: #f4f4f4; background: #252525;
color: aqua;
margin-top: auto; margin-top: auto;
} }

View File

@ -3,7 +3,7 @@ import React from 'react';
function Footer() { function Footer() {
return ( return (
<footer className="footer"> <footer className="footer">
<p>&copy; 2023 Мой блог. Все права защищены.</p> <p>&copy; 2025 Мой блог. Все права защищены.</p>
</footer> </footer>
); );
} }