Skip to content

Commit

Permalink
feat: Add new favicon and update meta tags
Browse files Browse the repository at this point in the history
- Added new favicon images for different sizes
- Updated meta tags for better compatibility with various devices and browsers
  • Loading branch information
SakuraIsayeki committed Sep 8, 2024
1 parent 7ee26d4 commit dc3e516
Show file tree
Hide file tree
Showing 11 changed files with 813 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/YumeChan.NetRunner/Pages/_Host.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="~/" />
<title>Yume-Chan</title>

<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=4">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v=4">
<link rel="icon" type="image/png" sizes="192x192" href="/android-chrome-192x192.png?v=4">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=4">
<link rel="manifest" href="/site.webmanifest?v=4">
<link rel="mask-icon" href="/safari-pinned-tab.svg?v=4" color="#111111">
<link rel="shortcut icon" href="/favicon.ico?v=4">
<meta name="msapplication-TileColor" content="#111111">
<meta name="theme-color" content="#111111">

<link rel="stylesheet" href="/css/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="/lib/bootstrap-icons/font/bootstrap-icons.min.css" />
<link rel="stylesheet" href="/css/site.css" />
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/YumeChan.NetRunner/wwwroot/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png?v=4"/>
<TileColor>#111111</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file added src/YumeChan.NetRunner/wwwroot/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/YumeChan.NetRunner/wwwroot/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/YumeChan.NetRunner/wwwroot/favicon.ico
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
774 changes: 774 additions & 0 deletions src/YumeChan.NetRunner/wwwroot/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions src/YumeChan.NetRunner/wwwroot/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png?v=4",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png?v=4",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#111111",
"background_color": "#111111",
"display": "standalone"
}

0 comments on commit dc3e516

Please sign in to comment.