Compare commits

...

2 Commits

Author SHA1 Message Date
eaeb02eeff
Add service link to memos
All checks were successful
Deploy website / deploy (push) Successful in 13s
2024-12-04 18:32:59 +11:00
2eabfac223
Update favicon 2024-12-04 18:32:16 +11:00
7 changed files with 19 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 991 B

After

Width:  |  Height:  |  Size: 719 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

BIN
public/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -16,10 +16,24 @@ const { title, className } = Astro.props;
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta name="viewport" content="width=device-width" /> <meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" /> <link rel="icon" href="/favicon.ico?v=2" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" /> <link
<link rel="icon" href="/favicon.ico" /> rel="icon"
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> type="image/png"
sizes="16x16"
href="/favicon-16x16.png?v=2"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png?v=2"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png?v=2"
/>
<script <script
is:inline is:inline

View File

@ -9,6 +9,7 @@ const socials = [
const services = [ const services = [
["Gitea", "git"], ["Gitea", "git"],
["Roundcube", "mail"], ["Roundcube", "mail"],
["Memos", "memo"],
]; ];
services.sort(([_a, a], [_b, b]) => a.length - b.length || a.localeCompare(b)); services.sort(([_a, a], [_b, b]) => a.length - b.length || a.localeCompare(b));