open graph, twitter cards, pwa manifest, theme-color
This commit is contained in:
@@ -3,10 +3,38 @@
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="icon" href="/favicon.ico" sizes="any" />
|
||||
<link rel="icon" href="/icon-192.png" type="image/png" />
|
||||
<link rel="apple-touch-icon" href="/icon-512.png" />
|
||||
|
||||
<!-- Primary meta -->
|
||||
<title>Echoboard</title>
|
||||
<meta name="description" content="Self-hosted feedback board. Submit feature requests and bug reports without creating an account. Anonymous by default, no email required." />
|
||||
<meta name="theme-color" content="#161616" />
|
||||
<meta name="color-scheme" content="dark light" />
|
||||
|
||||
<!-- Open Graph -->
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:title" content="Echoboard" />
|
||||
<meta property="og:description" content="Self-hosted feedback board. Anonymous by default, no email required. Vote on what matters, comment with markdown, track status changes." />
|
||||
<meta property="og:image" content="/icon-512.png" />
|
||||
<meta property="og:image:width" content="512" />
|
||||
<meta property="og:image:height" content="512" />
|
||||
<meta property="og:image:alt" content="Echoboard - feedback for everyone" />
|
||||
<meta property="og:site_name" content="Echoboard" />
|
||||
<meta property="og:locale" content="en_US" />
|
||||
|
||||
<!-- Twitter / X -->
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:title" content="Echoboard" />
|
||||
<meta name="twitter:description" content="Self-hosted feedback board. Anonymous by default, no email required." />
|
||||
<meta name="twitter:image" content="/icon-512.png" />
|
||||
<meta name="twitter:image:alt" content="Echoboard - feedback for everyone" />
|
||||
|
||||
<!-- Icons -->
|
||||
<link rel="icon" href="/favicon.ico" sizes="any" />
|
||||
<link rel="icon" href="/icon-192.png" type="image/png" sizes="192x192" />
|
||||
<link rel="apple-touch-icon" href="/icon-512.png" />
|
||||
|
||||
<!-- PWA -->
|
||||
<link rel="manifest" href="/manifest.json" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
|
||||
23
packages/web/public/manifest.json
Normal file
23
packages/web/public/manifest.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "Echoboard",
|
||||
"short_name": "Echoboard",
|
||||
"description": "Self-hosted feedback board. Anonymous by default, no email required.",
|
||||
"start_url": "/",
|
||||
"display": "standalone",
|
||||
"background_color": "#161616",
|
||||
"theme_color": "#161616",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/icon-192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"purpose": "any"
|
||||
},
|
||||
{
|
||||
"src": "/icon-512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "any"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user