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

• added link to main page at 404 page

• added 88x31 buttons section
• fixed some bugs
This commit is contained in:
pufok 2025-03-30 20:10:44 +03:00
parent 393cca1636
commit b5a776913b
2 changed files with 27 additions and 4 deletions

View File

@ -17,7 +17,7 @@ function Contact() {
</li>
<li>
<a
href="https://bsky.app/profile/pufok.bsky.social"
href="https://bsky.app/profile/pufok.gay"
target="_blank"
rel="noreferrer"
>
@ -26,7 +26,12 @@ function Contact() {
</li>
<li>
<a href="https://x.com/pufok_" target="_blank" rel="noreferrer">
Twitter (aka X)
Twitter (aka 𝕏)
</a>
</li>
<li>
<a href="https://git.gay/pufok" target="_blank" rel="noreferrer">
Git.gay
</a>
</li>
<li>
@ -83,8 +88,24 @@ function Contact() {
YouTube
</a>
</li>
<li>Minecraft: furrmeow</li>
<li>
<a
href="https://namemc.com/profile/furrmeow"
target="_blank"
rel="noreferrer"
>
Minecraft
</a>
</li>
</ul>
<h1>Кнопочки</h1>
<p>интересные кнопочки на другие ресурсы:</p>
<a href="https://pufok.gay/" target="_blank" rel="noreferrer">
<img
src="https://pufok.gay/PublicResources/webring.png"
alt="pufok.gay"
></img>
</a>
</div>
);
}

View File

@ -1,10 +1,12 @@
import React from 'react';
import { Link } from 'react-router-dom';
function NotFound() {
return (
<div className="not-found">
<div className="page not-found">
<h1>404</h1>
<p>Страница не найдена</p>
<Link to="/">На главную</Link>
</div>
);
}