d519fe82bd
- Added new mew_logo_2.svg to public directory - Updated MewLogo component to use SVG instead of PNG - Updated index.html favicon references to use SVG format - Updated manifest.webmanifest icon references to use SVG with 'any' size - SVG provides better scalability and smaller file size (3.5KB vs 4.2KB PNG) Co-authored-by: shakespeare.diy <assistant@shakespeare.diy>
36 lines
1.7 KiB
HTML
36 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<title>Mew — A Nostr Client</title>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Mew — A Nostr Client" />
|
|
|
|
<!-- Open Graph -->
|
|
<meta property="og:title" content="Mew" />
|
|
<meta property="og:description" content="A Nostr Client" />
|
|
<meta property="og:image" content="https://mew.shakespeare.wtf/og-image.png" />
|
|
<meta property="og:image:width" content="1424" />
|
|
<meta property="og:image:height" content="752" />
|
|
<meta property="og:image:type" content="image/png" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://mew.shakespeare.wtf" />
|
|
<meta property="og:site_name" content="Mew" />
|
|
|
|
<!-- Twitter / X -->
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content="Mew" />
|
|
<meta name="twitter:description" content="A Nostr Client" />
|
|
<meta name="twitter:image" content="https://mew.shakespeare.wtf/og-image.png" />
|
|
|
|
<meta http-equiv="content-security-policy" content="default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; frame-src 'self' https:; font-src 'self'; base-uri 'self'; manifest-src 'self'; connect-src 'self' blob: https: wss:; img-src 'self' data: blob: https:; media-src 'self' https:">
|
|
<link rel="icon" type="image/svg+xml" href="/logo.svg">
|
|
<link rel="apple-touch-icon" href="/logo.svg">
|
|
<link rel="manifest" href="/manifest.webmanifest">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|