mirror of
https://github.com/ReVanced/revanced-website.git
synced 2026-01-20 09:43:57 +00:00
fix: Use SEO compliant meta tags
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
import { JsonLd } from 'svelte-meta-tags';
|
||||
|
||||
let _title: string = '';
|
||||
$: title = _title === '' ? 'ReVanced' : `ReVanced · ${_title}`;
|
||||
$: title = _title === '' ? 'ReVanced' : `ReVanced - ${_title}`;
|
||||
|
||||
export { _title as title };
|
||||
|
||||
@@ -19,14 +19,10 @@
|
||||
<!-- OpenGraph -->
|
||||
<meta property="og:title" content={title} />
|
||||
<meta property="og:description" content={description} />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:image" content="/logo.png" />
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta name="twitter:title" content={title} />
|
||||
<meta name="twitter:description" content={description} />
|
||||
<meta name="twitter:image" itemprop="image" content="/logo.png" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
|
||||
{#if schemas}
|
||||
{#each schemas as schema}
|
||||
Reference in New Issue
Block a user