chore: update favicon & blog meta title
This commit is contained in:
parent
37302c31eb
commit
c54ba4b995
3 changed files with 13 additions and 3 deletions
10
public/favicon.svg
Normal file
10
public/favicon.svg
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<svg width="800px" height="800px" viewBox="0 0 72 72" id="emoji" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="color">
|
||||
<circle cx="36" cy="36.0001" r="28"/>
|
||||
</g>
|
||||
<g id="line">
|
||||
<circle cx="36" cy="36.0001" r="28" fill="none" stroke="#000000" stroke-linejoin="round" stroke-width="2"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 348 B |
|
@ -14,14 +14,14 @@ let {isArticle = false, title, description = 'default description', image = '/co
|
|||
|
||||
description = title === SITE_TITLE
|
||||
? SITE_DESCRIPTION
|
||||
: `${SITE_TITLE} • ${description}`
|
||||
: `${description} • ${SITE_TITLE}`
|
||||
---
|
||||
|
||||
<!-- Global Metadata -->
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
|
||||
<!-- Font preloads -->
|
||||
|
|
|
@ -43,7 +43,7 @@ const appTitle = article?.title ? `${article.title} | Cozy` : 'Cozy';
|
|||
<meta itemprop="description" content="Remove distractions. Save your favorites. Get useful insights. Cozy is your modern-day reading assistant." />
|
||||
)
|
||||
}
|
||||
<link rel="shortcut icon" type="image/png" href="/favicon.ico" />
|
||||
<link rel="shortcut icon" type="image/png" href="/favicon.svg" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="app-wrapper">
|
||||
|
|
Loading…
Reference in a new issue