Add favicon and update HTML footer; include favicon link in index.html and credit in footer
All checks were successful
CI / build (push) Successful in 31s

This commit is contained in:
2025-07-23 21:04:38 +00:00
parent 94599a7e94
commit 074f1ad2fd
3 changed files with 12 additions and 0 deletions

View File

@@ -1,3 +1,10 @@
# pictshare-browse
...existing content...
## Credits
Favicon by [SmashIcons](https://smashicons.com/)
# pictshare-browse # pictshare-browse

BIN
public/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

@@ -4,6 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PictShare Gallery</title> <title>PictShare Gallery</title>
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="stylesheet" href="/style.css"> <link rel="stylesheet" href="/style.css">
</head> </head>
<body> <body>
@@ -13,5 +14,9 @@
<script src="/app.js"></script> <script src="/app.js"></script>
<footer style="margin:2rem 0 1rem 0; font-size:0.95em; color:#aaa;">
Favicon by <a href="https://smashicons.com/" target="_blank" rel="noopener" style="color:#aaa;">SmashIcons</a>
</footer>
</body> </body>
</html> </html>