chore: update resources file format
|
@ -1,4 +1,4 @@
|
|||
<p align="center"><img height="64px" src="https://raw.githubusercontent.com/usememos/memos/main/resources/logo-full.png" alt="✍️ memos" /></p>
|
||||
<p align="center"><a href="https://usememos.com"><img height="64px" src="https://raw.githubusercontent.com/usememos/memos/main/resources/logo-full.webp" alt="✍️ memos" /></a></p>
|
||||
|
||||
<p align="center">An open source, self-hosted knowledge base that works with a SQLite db file.</p>
|
||||
|
||||
|
|
Before Width: | Height: | Size: 208 KiB |
BIN
resources/logo-full.webp
Normal file
After Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 156 KiB |
BIN
resources/logo.webp
Normal file
After Width: | Height: | Size: 68 KiB |
|
@ -2,7 +2,7 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/logo.png" type="image/*" />
|
||||
<link rel="icon" href="/logo.webp" type="image/*" />
|
||||
<meta name="theme-color" content="#f6f5f4" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
||||
<link rel="manifest" href="/manifest.json" />
|
||||
|
|
Before Width: | Height: | Size: 208 KiB |
BIN
web/public/logo-full.webp
Normal file
After Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 156 KiB |
BIN
web/public/logo.webp
Normal file
After Width: | Height: | Size: 68 KiB |
|
@ -1,18 +1,17 @@
|
|||
{
|
||||
"short_name": "Memos",
|
||||
"name": "Memos",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/logo.png",
|
||||
"type": "image/png",
|
||||
"sizes": "200x200"
|
||||
}
|
||||
],
|
||||
"start_url": "/",
|
||||
"background_color": "#f6f5f4",
|
||||
"display": "standalone",
|
||||
"scope": "/",
|
||||
"theme_color": "#f6f5f4",
|
||||
"description": "usememos/memos"
|
||||
}
|
||||
|
||||
"short_name": "Memos",
|
||||
"name": "Memos",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/logo.webp",
|
||||
"type": "image/*",
|
||||
"sizes": "200x200"
|
||||
}
|
||||
],
|
||||
"start_url": "/",
|
||||
"background_color": "#f6f5f4",
|
||||
"display": "standalone",
|
||||
"scope": "/",
|
||||
"theme_color": "#f6f5f4",
|
||||
"description": "usememos/memos"
|
||||
}
|
||||
|
|
|
@ -124,7 +124,7 @@ const Auth: React.FC<Props> = () => {
|
|||
<div className="auth-form-wrapper">
|
||||
<div className="page-header-container">
|
||||
<div className="title-container">
|
||||
<img className="logo-img" src="/logo-full.png" alt="" />
|
||||
<img className="logo-img" src="/logo-full.webp" alt="" />
|
||||
</div>
|
||||
<p className="slogan-text">{t("slogan")}</p>
|
||||
</div>
|
||||
|
|