fix some home page SEO
This commit is contained in:
parent
0a4032b0f9
commit
506c2de04c
3 changed files with 5 additions and 2 deletions
|
@ -6,6 +6,7 @@
|
|||
<title>Jank Client</title>
|
||||
<meta content="Jank Client" property="og:title" />
|
||||
<meta content="A spacebar client that has DMs, replying and more" property="og:description" />
|
||||
<meta content="A spacebar client that has DMs, replying and more" name="description" />
|
||||
<meta content="/logo.webp" property="og:image" />
|
||||
<meta content="#4b458c" data-react-helmet="true" name="theme-color" />
|
||||
<link href="/style.css" rel="stylesheet" />
|
||||
|
@ -24,7 +25,7 @@
|
|||
|
||||
<body class="no-theme" style="overflow-y: scroll">
|
||||
<div id="titleDiv">
|
||||
<img src="/logo.svg" width="40" />
|
||||
<img src="/logo.svg" width="40" alt="" />
|
||||
<h1 id="pageTitle">Jank Client</h1>
|
||||
<a href="/invite/USgYJo?instance=https%3A%2F%2Fspacebar.chat" class="TitleButtons">
|
||||
Spacebar Guild
|
||||
|
|
|
@ -81,6 +81,7 @@ fetch("/instances.json")
|
|||
div.classList.add("flexltr", "instance");
|
||||
if (instance.image) {
|
||||
const img = document.createElement("img");
|
||||
img.alt = I18n.home.icon(instance.name);
|
||||
img.src = instance.image;
|
||||
div.append(img);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
User-agent: *
|
||||
Disallow: /channel/
|
||||
Allow: /invite/
|
||||
Allow: /oath2/
|
||||
Allow: /oauth2/
|
||||
Allow: /login
|
||||
Allow: /register
|
||||
Allow: /
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue