add logo and favicon; improve ui; rename frontend, backend folders
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
18
frontend/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/png" href="/favicon/favicon-96x96.png" sizes="96x96" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon/favicon.svg" />
|
||||
<link rel="shortcut icon" href="/favicon/favicon.ico" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" />
|
||||
<meta name="apple-mobile-web-app-title" content="tnyr.me" />
|
||||
<link rel="manifest" href="/favicon/site.webmanifest" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>tnyr.me</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/main.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
BIN
frontend/public/favicon/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
frontend/public/favicon/favicon-96x96.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
frontend/public/favicon/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
3
frontend/public/favicon/favicon.svg
Normal file
|
After Width: | Height: | Size: 83 KiB |
21
frontend/public/favicon/site.webmanifest
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "tnyr.me",
|
||||
"short_name": "tnyr",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/assets/favicon/web-app-manifest-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
},
|
||||
{
|
||||
"src": "/assets/favicon/web-app-manifest-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
||||
BIN
frontend/public/favicon/web-app-manifest-192x192.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
frontend/public/favicon/web-app-manifest-512x512.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
@@ -178,14 +178,14 @@ export default function App() {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer className="fixed bottom-4 flex items-center gap-2 text-slate-400">
|
||||
<footer className="bottom-4 flex items-center gap-3 text-slate-400">
|
||||
<a
|
||||
href="https://github.com/Sevi-py/tnyr.me"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="hover:text-slate-300 transition-colors"
|
||||
>
|
||||
<Github className="w-6 h-6" />
|
||||
<Github className="w-8 h-8" />
|
||||
</a>
|
||||
<a
|
||||
href="https://www.buymeacoffee.com/severin.hilbert"
|
||||
@@ -193,7 +193,7 @@ export default function App() {
|
||||
rel="noopener noreferrer"
|
||||
className="hover:text-slate-300 transition-colors"
|
||||
>
|
||||
<SiBuymeacoffee className="w-6 h-6" />
|
||||
<SiBuymeacoffee className="w-8 h-8" />
|
||||
</a>
|
||||
</footer>
|
||||
</div>
|
||||
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
BIN
logo.png
|
Before Width: | Height: | Size: 114 KiB After Width: | Height: | Size: 62 KiB |
@@ -1,13 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>tnyr.me</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/main.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||